phpOMS/tests/Localization/ISO3166NumEnumTest.php
Dennis Eichhorn 37db31e85f test fixes
2023-09-21 19:32:09 +00:00

64 lines
1.6 KiB
PHP
Executable File

<?php
/**
* Jingga
*
* 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\ISO3166NumEnum;
/**
* @testdox phpOMS\tests\Localization\ISO3166NumEnumTest: ISO 3166 country codes
* @internal
*/
final class ISO3166NumEnumTest 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;
$enum = ISO3166NumEnum::getConstants();
foreach ($enum as $code) {
if (\strlen($code) !== 3) {
$ok = false;
break;
}
}
self::assertTrue($ok);
}
public function testRegion() : void
{
$regions = [
'europe', 'asia', 'america', 'oceania', 'africa', 'eu', 'euro',
'north-europe', 'south-europe', 'east-europe', 'west-europe',
'middle-east', 'south-america', 'north-america', 'central-asia',
'south-asia', 'southeast-asia', 'east-asia', 'west-asia',
'central-africa', 'east-africa', 'north-africa', 'south-africa',
'west-africa', 'australia', 'polynesia', 'melanesia', 'antarctica',
];
foreach ($regions as $region) {
self::assertGreaterThan(0, \count(ISO3166NumEnum::getRegion($region)), 'Failed for ' . $region);
}
}
}