phpOMS/tests/Utils/RnG/TextTest.php
2024-03-20 07:21:26 +00:00

40 lines
923 B
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\Utils\RnG;
use phpOMS\Utils\RnG\Text;
/**
* @internal
*/
#[\PHPUnit\Framework\Attributes\CoversClass(\phpOMS\Utils\RnG\Text::class)]
#[\PHPUnit\Framework\Attributes\TestDox('phpOMS\tests\Utils\RnG\TextTest: Random text generator')]
final class TextTest extends \PHPUnit\Framework\TestCase
{
#[\PHPUnit\Framework\Attributes\Group('framework')]
#[\PHPUnit\Framework\Attributes\TestDox('Random text can be generated')]
public function testRnG() : void
{
$text = new Text(true, true);
self::assertEquals('', $text->generateText(0));
self::assertNotEquals(
$text->generateText(300),
$text->generateText(300)
);
}
}