phpOMS/tests/Utils/Barcode/DatamatrixTest.php
2024-03-20 07:21:26 +00:00

62 lines
1.4 KiB
PHP
Executable File

<?php
/**
* Jingga
*
* PHP Version 8.2
*
* @package tests
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace phpOMS\tests\Utils\Barcode;
use phpOMS\Utils\Barcode\Datamatrix;
/**
* @internal
*/
#[\PHPUnit\Framework\Attributes\CoversClass(\phpOMS\Utils\Barcode\Datamatrix::class)]
final class DatamatrixTest extends \PHPUnit\Framework\TestCase
{
protected function setUp() : void
{
if (!\extension_loaded('gd')) {
$this->markTestSkipped(
'The GD extension is not available.'
);
}
}
#[\PHPUnit\Framework\Attributes\Group('framework')]
public function testImagePng() : void
{
$path = __DIR__ . '/datamatrix.png';
if (\is_file($path)) {
\unlink($path);
}
$img = new Datamatrix('https://jingga.app', 200, 50);
$img->saveToPngFile($path);
self::assertFileExists($path);
}
#[\PHPUnit\Framework\Attributes\Group('framework')]
public function testImageJpg() : void
{
$path = __DIR__ . '/datamatrix.jpg';
if (\is_file($path)) {
\unlink($path);
}
$img = new Datamatrix('https://jingga.app', 200, 50);
$img->saveToJpgFile($path);
self::assertFileExists($path);
}
}