mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-02 09:38:32 +01:00
56 lines
1.1 KiB
PHP
56 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psl\Tests\Math;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Psl\Iter;
|
|
use Psl\Math;
|
|
|
|
class SumFloatsTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider provideData
|
|
*/
|
|
public function testSumFloats(float $expected, iterable $numbers): void
|
|
{
|
|
self::assertSame($expected, Math\sum_floats($numbers));
|
|
}
|
|
|
|
public function provideData(): array
|
|
{
|
|
return [
|
|
[
|
|
116.70000000000005,
|
|
[
|
|
10.9,
|
|
5,
|
|
...Iter\range(0, 9.8798, 0.48),
|
|
],
|
|
],
|
|
|
|
[
|
|
103.0,
|
|
[
|
|
18,
|
|
15,
|
|
...Iter\to_array(Iter\range(0, 10)),
|
|
15,
|
|
],
|
|
],
|
|
|
|
[
|
|
323.54,
|
|
[
|
|
19.5,
|
|
15.8,
|
|
...Iter\range(0.5, 45, 5.98),
|
|
52.8,
|
|
64,
|
|
]
|
|
],
|
|
];
|
|
}
|
|
}
|