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

42 lines
682 B
PHP

<?php
declare(strict_types=1);
namespace Psl\Tests\Math;
use PHPUnit\Framework\TestCase;
use Psl\Iter;
use Psl\Math;
class MinTest extends TestCase
{
/**
* @dataProvider provideData
*/
public function testMin($expected, iterable $numbers): void
{
self::assertSame($expected, Math\min($numbers));
}
public function provideData(): array
{
return [
[
0,
Iter\range(0, 10, 2)
],
[
4,
[...Iter\to_array(Iter\range(5, 10)), 4]
],
[
null,
[]
]
];
}
}