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

49 lines
788 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\Math;
2019-12-24 01:52:07 +01:00
class DivTest extends TestCase
{
2019-12-26 21:03:29 +01:00
/**
* @dataProvider provideData
*/
public function testDiv(int $expected, int $numerator, int $denominator): void
{
self::assertSame($expected, Math\div($numerator, $denominator));
}
public function provideData(): array
{
return[
[
2,
5,
2,
],
[
5,
10,
2
],
[
0,
15,
20
],
[
1,
10,
10
]
];
}
2019-12-24 01:52:07 +01:00
}