endtoend-test-psl/tests/Psl/Math/MaxvaTest.php
2019-12-26 21:03:29 +01:00

50 lines
909 B
PHP

<?php
declare(strict_types=1);
namespace Psl\Tests\Math;
use PHPUnit\Framework\TestCase;
use Psl\Iter;
use Psl\Math;
class MaxvaTest extends TestCase
{
/**
* @dataProvider provideData
*/
public function testMaxva($expected, $first, $second, ...$rest): void
{
self::assertSame($expected, Math\maxva($first, $second, ...$rest));
}
public function provideData(): array
{
return [
[
10,
10,
5,
...Iter\range(0, 9, 2)
],
[
18,
18,
15,
...Iter\to_array(Iter\range(0, 10)),
15
],
[
64,
19,
15,
...Iter\range(0, 45, 5),
52,
64
]
];
}
}