Files
electionvue/vendor/tecnickcom/tc-lib-pdf-font/test/FontTest.php
T

49 lines
1.2 KiB
PHP
Raw Normal View History

2026-08-30 22:02:02 +00:00
<?php
/**
* FontTest.php
*
* @since 2011-05-23
* @category Library
* @package PdfFont
* @author Nicola Asuni <info@tecnick.com>
* @copyright 2011-2026 Nicola Asuni - Tecnick.com LTD
* @license https://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE)
* @link https://github.com/tecnickcom/tc-lib-pdf-font
*
* This file is part of tc-lib-pdf-font software library.
*/
namespace Test;
/**
* Font Test
*
* @since 2011-05-23
* @category Library
* @package PdfFont
* @author Nicola Asuni <info@tecnick.com>
* @copyright 2011-2026 Nicola Asuni - Tecnick.com LTD
* @license https://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE)
* @link https://github.com/tecnickcom/tc-lib-pdf-font
*/
class FontTest extends TestUtil
{
/** @throws \Com\Tecnick\Pdf\Font\Exception */
public function testFontRejectsUnsafeInputDefinitionPath(): void
{
$this->bcExpectException(\Com\Tecnick\Pdf\Font\Exception::class);
$this->setupTest();
new \Com\Tecnick\Pdf\Font\Font(
'helvetica',
'',
'../font.json',
false,
true,
false,
true,
new \Com\Tecnick\File\File(),
);
}
}