phpOMS/tests/Localization/ISO4217NumEnumTest.php
Dennis Eichhorn c2dea0f000 fix tests
2023-09-21 18:32:09 +00:00

48 lines
962 B
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\ISO4217NumEnum;
/**
* @testdox phpOMS\tests\Localization\ISO4217NumEnumTest: ISO 4217 currency codes
* @internal
*/
final class ISO4217NumEnumTest extends \PHPUnit\Framework\TestCase
{
/**
* @testdox The ISO 4217 currency code enum has the correct format of currency codes
* @group framework
* @coversNothing
*/
public function testEnums() : void
{
$ok = true;
$enum = ISO4217NumEnum::getConstants();
foreach ($enum as $code) {
if (\strlen($code) !== 3) {
$ok = false;
break;
}
}
self::assertTrue($ok);
}
}