phpOMS/tests/System/SystemTypeTest.php
2022-11-09 22:55:39 +01:00

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);
}
}