mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
48 lines
1.1 KiB
PHP
Executable File
48 lines
1.1 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\Localization;
|
|
|
|
require_once __DIR__ . '/../Autoloader.php';
|
|
|
|
use phpOMS\Localization\ISO3166TwoEnum;
|
|
use phpOMS\Localization\ISO639Enum;
|
|
|
|
/**
|
|
* @testdox phpOMS\tests\Localization\ISO639EnumTest: ISO 639 language codes
|
|
* @internal
|
|
*/
|
|
final class ISO639EnumTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
/**
|
|
* @testdox The ISO 639 language code enum has only unique values
|
|
* @group framework
|
|
* @coversNothing
|
|
*/
|
|
public function testUnique() : void
|
|
{
|
|
$enum = ISO639Enum::getConstants();
|
|
self::assertEquals(\count($enum), \count(\array_unique($enum)));
|
|
}
|
|
|
|
public function testLanguage() : void
|
|
{
|
|
$enum = ISO3166TwoEnum::getConstants();
|
|
|
|
foreach ($enum as $code) {
|
|
self::assertGreaterThan(0, \count(ISO639Enum::languageFromCountry($code)), 'Failed for code: ' . $code);
|
|
}
|
|
}
|
|
}
|