phpOMS/tests/Localization/ISO3166TwoEnumTest.php
2023-04-16 01:55:36 +02:00

58 lines
1.2 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;
/**
* @testdox phpOMS\tests\Localization\ISO3166NumEnumTest: ISO 3166 country codes
* @internal
*/
final class ISO3166TwoEnumTest extends \PHPUnit\Framework\TestCase
{
/**
* @testdox The ISO 3166 country code enum has the correct format of country codes
* @group framework
* @coversNothing
*/
public function testEnums() : void
{
$ok = true;
$countryCodes = ISO3166TwoEnum::getConstants();
foreach ($countryCodes as $code) {
if (\strlen($code) !== 2) {
$ok = false;
break;
}
}
self::assertTrue($ok);
}
/**
* @testdox The ISO 3166 enum has only unique values
* @group framework
* @coversNothing
*/
public function testUnique() : void
{
self::assertEquals(ISO3166TwoEnum::getConstants(), \array_unique(ISO3166TwoEnum::getConstants()));
}
}