phpOMS/tests/Stdlib/Queue/PriorityModeTest.php
2023-06-17 03:13:39 +02:00

54 lines
1.1 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\Stdlib\Queue;
use phpOMS\Stdlib\Queue\PriorityMode;
/**
* @internal
*/
final class PriorityModeTest extends \PHPUnit\Framework\TestCase
{
/**
* @group framework
* @coversNothing
*/
public function testEnumCount() : void
{
self::assertCount(4, PriorityMode::getConstants());
}
/**
* @group framework
* @coversNothing
*/
public function testUnique() : void
{
self::assertEquals(PriorityMode::getConstants(), \array_unique(PriorityMode::getConstants()));
}
/**
* @group framework
* @coversNothing
*/
public function testEnums() : void
{
self::assertEquals(1, PriorityMode::FIFO);
self::assertEquals(2, PriorityMode::LIFO);
self::assertEquals(4, PriorityMode::HIGHEST);
self::assertEquals(8, PriorityMode::LOWEST);
}
}