mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
55 lines
1.0 KiB
PHP
Executable File
55 lines
1.0 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Karaka
|
|
*
|
|
* 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\Asset;
|
|
|
|
require_once __DIR__ . '/../Autoloader.php';
|
|
|
|
use phpOMS\Asset\AssetType;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
final class AssetTypeTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
/**
|
|
* @group framework
|
|
* @coversNothing
|
|
*/
|
|
public function testEnumCount() : void
|
|
{
|
|
self::assertCount(3, AssetType::getConstants());
|
|
}
|
|
|
|
/**
|
|
* @group framework
|
|
* @coversNothing
|
|
*/
|
|
public function testUnique() : void
|
|
{
|
|
self::assertEquals(AssetType::getConstants(), \array_unique(AssetType::getConstants()));
|
|
}
|
|
|
|
/**
|
|
* @group framework
|
|
* @coversNothing
|
|
*/
|
|
public function testEnums() : void
|
|
{
|
|
self::assertEquals(0, AssetType::CSS);
|
|
self::assertEquals(1, AssetType::JS);
|
|
self::assertEquals(2, AssetType::JSLATE);
|
|
}
|
|
}
|