endtoend-test-psl/tests/Psl/Str/Byte/ShuffleTest.php
2020-10-15 11:05:30 +02:00

35 lines
709 B
PHP

<?php
declare(strict_types=1);
namespace Psl\Tests\Str\Byte;
use PHPUnit\Framework\TestCase;
use Psl\Str\Byte;
final class ShuffleTest extends TestCase
{
/**
* @dataProvider provideData
*/
public function testShuffle(string $str): void
{
$shuffled = Byte\shuffle($str);
static::assertSame(Byte\length($str), Byte\length($shuffled));
if (Byte\length($shuffled) > 1) {
static::assertNotSame($str, $shuffled);
}
}
public function provideData(): array
{
return [
[''],
['A'],
['Hello, World!'],
['People linked by destiny will always find each other.'],
];
}
}