mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 01:38:41 +00:00
54 lines
1.6 KiB
PHP
Executable File
54 lines
1.6 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\System;
|
|
|
|
require_once __DIR__ . '/../Autoloader.php';
|
|
|
|
use phpOMS\System\SystemType;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
#[\PHPUnit\Framework\Attributes\TestDox('phpOMS\tests\System\SystemTypeTest: System type')]
|
|
final class SystemTypeTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
#[\PHPUnit\Framework\Attributes\Group('framework')]
|
|
#[\PHPUnit\Framework\Attributes\TestDox('The system type enum has the correct amount of values')]
|
|
#[\PHPUnit\Framework\Attributes\CoversNothing]
|
|
public function testEnumCount() : void
|
|
{
|
|
self::assertCount(4, SystemType::getConstants());
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\Group('framework')]
|
|
#[\PHPUnit\Framework\Attributes\TestDox('The system type enum has only unique values')]
|
|
#[\PHPUnit\Framework\Attributes\CoversNothing]
|
|
public function testUnique() : void
|
|
{
|
|
self::assertEquals(SystemType::getConstants(), \array_unique(SystemType::getConstants()));
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\Group('framework')]
|
|
#[\PHPUnit\Framework\Attributes\TestDox('The system type enum has the correct values')]
|
|
#[\PHPUnit\Framework\Attributes\CoversNothing]
|
|
public function testEnums() : void
|
|
{
|
|
self::assertEquals(1, SystemType::UNKNOWN);
|
|
self::assertEquals(2, SystemType::WIN);
|
|
self::assertEquals(3, SystemType::LINUX);
|
|
self::assertEquals(4, SystemType::OSX);
|
|
}
|
|
}
|