endtoend-test-psl/tests/Psl/Math/MinTest.php

42 lines
669 B
PHP
Raw Normal View History

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 MinTest extends TestCase
{
2019-12-26 21:03:29 +01:00
/**
* @dataProvider provideData
*/
2020-08-27 16:44:22 +02:00
public function testMin($expected, array $numbers): void
2019-12-26 21:03:29 +01:00
{
self::assertSame($expected, Math\min($numbers));
}
public function provideData(): array
{
return [
[
0,
2020-08-27 16:44:22 +02:00
[...Iter\range(0, 10, 2)]
2019-12-26 21:03:29 +01:00
],
[
4,
2020-08-27 16:44:22 +02:00
[...Iter\range(5, 10), 4]
2019-12-26 21:03:29 +01:00
],
[
null,
[]
]
];
}
2019-12-24 01:52:07 +01:00
}