mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-02 17:56:09 +01:00
42 lines
669 B
PHP
42 lines
669 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, array $numbers): void
|
|
{
|
|
self::assertSame($expected, Math\min($numbers));
|
|
}
|
|
|
|
public function provideData(): array
|
|
{
|
|
return [
|
|
[
|
|
0,
|
|
[...Iter\range(0, 10, 2)]
|
|
],
|
|
|
|
[
|
|
4,
|
|
[...Iter\range(5, 10), 4]
|
|
],
|
|
|
|
[
|
|
null,
|
|
[]
|
|
]
|
|
];
|
|
}
|
|
}
|