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 SumTest extends TestCase
|
|
|
|
{
|
2019-12-26 21:03:29 +01:00
|
|
|
/**
|
|
|
|
* @dataProvider provideData
|
|
|
|
*/
|
2020-08-27 16:44:22 +02:00
|
|
|
public function testSum(int $expected, array $numbers): void
|
2019-12-26 21:03:29 +01:00
|
|
|
{
|
|
|
|
self::assertSame($expected, Math\sum($numbers));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function provideData(): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
[
|
|
|
|
60,
|
|
|
|
[
|
|
|
|
10,
|
|
|
|
5,
|
|
|
|
...Iter\range(0, 9),
|
|
|
|
],
|
|
|
|
],
|
|
|
|
|
|
|
|
[
|
|
|
|
103,
|
|
|
|
[
|
|
|
|
18,
|
|
|
|
15,
|
|
|
|
...Iter\to_array(Iter\range(0, 10)),
|
|
|
|
15,
|
|
|
|
],
|
|
|
|
],
|
|
|
|
|
|
|
|
[
|
|
|
|
534,
|
|
|
|
[
|
|
|
|
178,
|
|
|
|
15,
|
|
|
|
...Iter\range(0, 45, 5),
|
|
|
|
52,
|
|
|
|
64,
|
|
|
|
]
|
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
2019-12-24 01:52:07 +01:00
|
|
|
}
|