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

50 lines
917 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
final class MinvaTest extends TestCase
2019-12-24 01:52:07 +01:00
{
2019-12-26 21:03:29 +01:00
/**
* @dataProvider provideData
*/
public function testMainva($expected, $first, $second, ...$rest): void
{
static::assertSame($expected, Math\minva($first, $second, ...$rest));
2019-12-26 21:03:29 +01:00
}
public function provideData(): array
{
return [
[
5,
10,
5,
...Iter\range(7, 9, 2)
],
[
4,
18,
15,
...Iter\to_array(Iter\range(4, 10)),
15
],
[
15,
19,
15,
...Iter\range(40, 45, 5),
52,
64
]
];
}
2019-12-24 01:52:07 +01:00
}