endtoend-test-psl/tests/Psl/Dict/DropWhileTest.php

30 lines
788 B
PHP
Raw Normal View History

2021-02-16 00:23:01 +01:00
<?php
declare(strict_types=1);
namespace Psl\Tests\Dict;
use PHPUnit\Framework\TestCase;
use Psl\Dict;
final class DropWhileTest extends TestCase
{
/**
* @dataProvider provideData
*/
public function testDropWhile(array $expected, array $array, callable $callable): void
{
$result = Dict\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];
}
}