2019-12-24 01:52:07 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace Psl\Tests\Math;
|
|
|
|
|
|
|
|
use PHPUnit\Framework\TestCase;
|
2019-12-26 21:03:29 +01:00
|
|
|
use Psl\Iter;
|
|
|
|
use Psl\Math;
|
2019-12-24 01:52:07 +01:00
|
|
|
|
|
|
|
class MaxTest extends TestCase
|
|
|
|
{
|
2019-12-26 21:03:29 +01:00
|
|
|
/**
|
|
|
|
* @dataProvider provideData
|
|
|
|
*/
|
2020-08-27 16:44:22 +02:00
|
|
|
public function testMax($expected, array $numbers): void
|
2019-12-26 21:03:29 +01:00
|
|
|
{
|
|
|
|
self::assertSame($expected, Math\max($numbers));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function provideData(): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
[
|
|
|
|
10,
|
2020-08-27 16:44:22 +02:00
|
|
|
[0, 2, 4, 6, 8, 10],
|
2019-12-26 21:03:29 +01:00
|
|
|
],
|
|
|
|
|
|
|
|
[
|
|
|
|
15,
|
2020-08-27 16:44:22 +02:00
|
|
|
[0, 2, 4, 6, 8, 10, 15],
|
2019-12-26 21:03:29 +01:00
|
|
|
],
|
|
|
|
|
|
|
|
[
|
|
|
|
null,
|
|
|
|
[]
|
|
|
|
]
|
|
|
|
];
|
|
|
|
}
|
2019-12-24 01:52:07 +01:00
|
|
|
}
|