phpOMS/tests/Localization/PhoneEnumTest.php
2024-03-20 07:21:26 +00:00

47 lines
1.1 KiB
PHP
Executable File

<?php
/**
* Jingga
*
* PHP Version 8.2
*
* @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\PhoneEnum;
/**
* @internal
*/
#[\PHPUnit\Framework\Attributes\TestDox('phpOMS\tests\Localization\PhoneEnumTest: Country phone codes')]
final class PhoneEnumTest extends \PHPUnit\Framework\TestCase
{
#[\PHPUnit\Framework\Attributes\Group('framework')]
#[\PHPUnit\Framework\Attributes\TestDox('The phone enum has the correct format of country phone numbers')]
#[\PHPUnit\Framework\Attributes\CoversNothing]
public function testEnums() : void
{
$ok = true;
$countryCodes = PhoneEnum::getConstants();
foreach ($countryCodes as $code) {
if ($code < 0 || $code > 9999) {
$ok = false;
break;
}
}
self::assertTrue($ok);
// phone numbers seem to be not unique (AU, CX)
}
}