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

30 lines
831 B
PHP

<?php
declare(strict_types=1);
namespace Psl\Tests\Arr;
use PHPUnit\Framework\TestCase;
use Psl\Arr;
final class MapWithKeyTest extends TestCase
{
/**
* @dataProvider provideData
*/
public function testMapWithKey(array $expected, array $array, callable $function): void
{
$result = Arr\map_with_key($array, $function);
static::assertSame($expected, $result);
}
public function provideData(): iterable
{
yield [[1, 3, 5], [1, 2, 3], static fn (int $k, int $v): int => $k + $v];
yield [[0, 4, 16], [1, 2, 3], static fn (int $k, int $v): int => $k * (2 ** $v)];
yield [['1', '3', '5'], [1, 2, 3], static fn (int $k, int $v): string => (string) ($k + $v)];
yield [[], [], static fn (int $k, int $v): string => (string) ($k + $v)];
}
}