endtoend-test-psl/tests/Psl/Arr/DropWhileTest.php
2020-10-15 11:05:30 +02:00

30 lines
785 B
PHP

<?php
declare(strict_types=1);
namespace Psl\Tests\Arr;
use PHPUnit\Framework\TestCase;
use Psl\Arr;
final class DropWhileTest extends TestCase
{
/**
* @dataProvider provideData
*/
public function testDropWhile(array $expected, array $array, callable $callable): void
{
$result = Arr\drop_while($array, $callable);
static::assertSame($expected, $result);
}
public function provideData(): iterable
{
yield [[1, 2, 3, 4, 5], [1, 2, 3, 4, 5], static fn (int $_): bool => false];
yield [[3 => 4, 4 => 5], [1, 2, 3, 4, 5], static fn (int $i) => $i <= 3];
yield [[2 => 3, 3 => 4, 4 => 5], [1, 2, 3, 4, 5], static fn (int $i) => $i <= 2];
yield [[], [1, 2, 3, 4, 5], static fn (int $_) => true];
}
}