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

40 lines
658 B
PHP

<?php
declare(strict_types=1);
namespace Psl\Tests\Math;
use PHPUnit\Framework\TestCase;
use Psl\Math;
final class MaxTest extends TestCase
{
/**
* @dataProvider provideData
*/
public function testMax($expected, array $numbers): void
{
static::assertSame($expected, Math\max($numbers));
}
public function provideData(): array
{
return [
[
10,
[0, 2, 4, 6, 8, 10],
],
[
15,
[0, 2, 4, 6, 8, 10, 15],
],
[
null,
[]
]
];
}
}