endtoend-test-psl/tests/Psl/Arr/MapTest.php

30 lines
738 B
PHP
Raw Normal View History

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