mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
35 lines
610 B
PHP
35 lines
610 B
PHP
<?php
|
|
/**
|
|
* Karaka
|
|
*
|
|
* PHP Version 8.0
|
|
*
|
|
* @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\Localization;
|
|
|
|
require_once __DIR__ . '/../Autoloader.php';
|
|
|
|
use phpOMS\Localization\ISO8601EnumArray;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
final class ISO8601EnumArrayTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
/**
|
|
* @group framework
|
|
* @coversNothing
|
|
*/
|
|
public function testEnumCount() : void
|
|
{
|
|
self::assertCount(4, ISO8601EnumArray::getConstants());
|
|
}
|
|
}
|