phpOMS/tests/Account/GroupStatusTest.php
2024-03-20 05:16:00 +00:00

53 lines
1.6 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\Account;
require_once __DIR__ . '/../Autoloader.php';
use phpOMS\Account\GroupStatus;
/**
* @internal
*/
#[\PHPUnit\Framework\Attributes\TestDox('phpOMS\tests\Account\GroupStatus: Group status')]
final class GroupStatusTest extends \PHPUnit\Framework\TestCase
{
#[\PHPUnit\Framework\Attributes\Group('framework')]
#[\PHPUnit\Framework\Attributes\TestDox('The group status enum has the correct number of status codes')]
#[\PHPUnit\Framework\Attributes\CoversNothing]
public function testEnumCount() : void
{
self::assertCount(3, GroupStatus::getConstants());
}
#[\PHPUnit\Framework\Attributes\Group('framework')]
#[\PHPUnit\Framework\Attributes\TestDox('The group status enum has only unique values')]
#[\PHPUnit\Framework\Attributes\CoversNothing]
public function testUnique() : void
{
self::assertEquals(GroupStatus::getConstants(), \array_unique(GroupStatus::getConstants()));
}
#[\PHPUnit\Framework\Attributes\Group('framework')]
#[\PHPUnit\Framework\Attributes\TestDox('The group status enum has the correct values')]
#[\PHPUnit\Framework\Attributes\CoversNothing]
public function testEnums() : void
{
self::assertEquals(1, GroupStatus::ACTIVE);
self::assertEquals(2, GroupStatus::INACTIVE);
self::assertEquals(4, GroupStatus::HIDDEN);
}
}