endtoend-test-psl/tests/Psl/Dict/MapWithKeyTest.php
2021-02-16 00:23:01 +01:00

30 lines
834 B
PHP

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