mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
56 lines
1.1 KiB
PHP
Executable File
56 lines
1.1 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Karaka
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package tests
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://karaka.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\tests\System;
|
|
|
|
require_once __DIR__ . '/../Autoloader.php';
|
|
|
|
use phpOMS\System\SystemType;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
final class SystemTypeTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
/**
|
|
* @group framework
|
|
* @coversNothing
|
|
*/
|
|
public function testEnumCount() : void
|
|
{
|
|
self::assertCount(4, SystemType::getConstants());
|
|
}
|
|
|
|
/**
|
|
* @group framework
|
|
* @coversNothing
|
|
*/
|
|
public function testUnique() : void
|
|
{
|
|
self::assertEquals(SystemType::getConstants(), \array_unique(SystemType::getConstants()));
|
|
}
|
|
|
|
/**
|
|
* @group framework
|
|
* @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);
|
|
}
|
|
}
|