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

65 lines
1.3 KiB
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
final class DivTest extends TestCase
2019-12-24 01:52:07 +01:00
{
2019-12-26 21:03:29 +01:00
/**
* @dataProvider provideData
*/
public function testDiv(int $expected, int $numerator, int $denominator): void
{
static::assertSame($expected, Math\div($numerator, $denominator));
2019-12-26 21:03:29 +01:00
}
2020-09-11 02:42:29 +02:00
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);
}
2019-12-26 21:03:29 +01:00
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
}