phpOMS/tests/Utils/Barcode/BarAbstractTest.php
2024-03-20 05:16:00 +00:00

66 lines
1.5 KiB
PHP
Executable File

<?php
/**
* Jingga
*
* PHP Version 8.1
*
* @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\BarAbstract;
/**
* @internal
*/
#[\PHPUnit\Framework\Attributes\CoversClass(\phpOMS\Utils\Barcode\CodeAbstract::class)]
final class BarAbstractTest extends \PHPUnit\Framework\TestCase
{
protected $obj = null;
/**
* {@inheritdoc}
*/
protected function setUp() : void
{
$this->obj = new class() extends BarAbstract {};
}
#[\PHPUnit\Framework\Attributes\Group('framework')]
public function testSetGet() : void
{
$this->obj->setContent('abc');
self::assertEquals('abc', $this->obj->getContent());
}
#[\PHPUnit\Framework\Attributes\Group('framework')]
public function testInvalidDimensionWidth() : void
{
$this->expectException(\OutOfBoundsException::class);
$this->obj->setDimension(-2, 1);
}
#[\PHPUnit\Framework\Attributes\Group('framework')]
public function testInvalidDimensionHeight() : void
{
$this->expectException(\OutOfBoundsException::class);
$this->obj->setDimension(1, -2);
}
#[\PHPUnit\Framework\Attributes\Group('framework')]
public function testInvalidOrientation() : void
{
$this->expectException(\phpOMS\Stdlib\Base\Exception\InvalidEnumValue::class);
$this->obj->setOrientation(99);
}
}