endtoend-test-psl/tests/Psl/Str/Byte/ShuffleTest.php

35 lines
699 B
PHP
Raw Normal View History

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