endtoend-test-psl/tests/Psl/Math/DivTest.php
2020-09-11 01:42:29 +01:00

65 lines
1.3 KiB
PHP

<?php
declare(strict_types=1);
namespace Psl\Tests\Math;
use PHPUnit\Framework\TestCase;
use Psl\Math;
class DivTest extends TestCase
{
/**
* @dataProvider provideData
*/
public function testDiv(int $expected, int $numerator, int $denominator): void
{
self::assertSame($expected, Math\div($numerator, $denominator));
}
public function testDivByZero(): void
{
$this->expectException(Math\Exception\DivisionByZeroException::class);
$this->expectExceptionMessage('Division by zero.');
Math\div(10, 0);
}
public function testDivInt64MinByMinusOne(): void
{
$this->expectException(Math\Exception\ArithmeticException::class);
$this->expectExceptionMessage('Division of Math\INT64_MIN by -1 is not an integer.');
Math\div(Math\INT64_MIN, -1);
}
public function provideData(): array
{
return[
[
2,
5,
2,
],
[
5,
10,
2
],
[
0,
15,
20
],
[
1,
10,
10
]
];
}
}