mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-02 09:38:32 +01:00
30 lines
760 B
PHP
30 lines
760 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psl\Tests\Arr;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Psl\Arr;
|
|
|
|
final class TakeWhileTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider provideData
|
|
*/
|
|
public function testTakeWhile(array $expected, array $array, callable $callable): void
|
|
{
|
|
$result = Arr\take_while($array, $callable);
|
|
|
|
static::assertSame($expected, $result);
|
|
}
|
|
|
|
public function provideData(): iterable
|
|
{
|
|
yield [[], [1, 2, 3, 4, 5], static fn (int $_): bool => false];
|
|
yield [[1, 2, 3], [1, 2, 3, 4, 5], static fn (int $i) => $i <= 3];
|
|
yield [[1, 2], [1, 2, 3, 4, 5], static fn (int $i) => $i <= 2];
|
|
yield [[1, 2, 3, 4, 5], [1, 2, 3, 4, 5], static fn (int $_) => true];
|
|
}
|
|
}
|