mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
53 lines
1.6 KiB
PHP
Executable File
53 lines
1.6 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\System;
|
|
|
|
require_once __DIR__ . '/../Autoloader.php';
|
|
|
|
use phpOMS\System\CharsetType;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
#[\PHPUnit\Framework\Attributes\TestDox('phpOMS\tests\System\CharsetTypeTest: Character set type enum')]
|
|
final class CharsetTypeTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
#[\PHPUnit\Framework\Attributes\Group('framework')]
|
|
#[\PHPUnit\Framework\Attributes\TestDox('The character set type enum has the correct amount of values')]
|
|
#[\PHPUnit\Framework\Attributes\CoversNothing]
|
|
public function testEnumCount() : void
|
|
{
|
|
self::assertCount(3, CharsetType::getConstants());
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\Group('framework')]
|
|
#[\PHPUnit\Framework\Attributes\TestDox('The character set type enum has only unique values')]
|
|
#[\PHPUnit\Framework\Attributes\CoversNothing]
|
|
public function testUnique() : void
|
|
{
|
|
self::assertEquals(CharsetType::getConstants(), \array_unique(CharsetType::getConstants()));
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\Group('framework')]
|
|
#[\PHPUnit\Framework\Attributes\TestDox('The character set type enum has the correct values')]
|
|
#[\PHPUnit\Framework\Attributes\CoversNothing]
|
|
public function testEnums() : void
|
|
{
|
|
self::assertEquals('us-ascii', CharsetType::ASCII);
|
|
self::assertEquals('iso-8859-1', CharsetType::ISO_8859_1);
|
|
self::assertEquals('utf-8', CharsetType::UTF_8);
|
|
}
|
|
}
|