2017-10-24 16:59:12 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2018-01-06 12:09:33 +00:00
|
|
|
namespace Phpml\Tests\Math;
|
2017-10-24 16:59:12 +00:00
|
|
|
|
2017-11-28 07:00:13 +00:00
|
|
|
use Phpml\Exception\InvalidArgumentException;
|
2017-10-24 16:59:12 +00:00
|
|
|
use Phpml\Math\Comparison;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
|
|
|
class ComparisonTest extends TestCase
|
|
|
|
{
|
|
|
|
/**
|
2018-01-06 12:09:33 +00:00
|
|
|
* @param mixed $a
|
|
|
|
* @param mixed $b
|
2017-10-24 16:59:12 +00:00
|
|
|
*
|
|
|
|
* @dataProvider provideData
|
|
|
|
*/
|
2017-11-14 20:21:23 +00:00
|
|
|
public function testResult($a, $b, string $operator, bool $expected): void
|
2017-10-24 16:59:12 +00:00
|
|
|
{
|
|
|
|
$result = Comparison::compare($a, $b, $operator);
|
|
|
|
|
|
|
|
$this->assertEquals($expected, $result);
|
|
|
|
}
|
|
|
|
|
2017-11-14 20:21:23 +00:00
|
|
|
public function testThrowExceptionWhenOperatorIsInvalid(): void
|
2017-10-24 16:59:12 +00:00
|
|
|
{
|
2017-11-28 07:00:13 +00:00
|
|
|
$this->expectException(InvalidArgumentException::class);
|
|
|
|
$this->expectExceptionMessage('Invalid operator "~=" provided');
|
2017-10-24 16:59:12 +00:00
|
|
|
Comparison::compare(1, 1, '~=');
|
|
|
|
}
|
|
|
|
|
2017-11-22 21:16:10 +00:00
|
|
|
public function provideData(): array
|
2017-10-24 16:59:12 +00:00
|
|
|
{
|
|
|
|
return [
|
|
|
|
// Greater
|
|
|
|
[1, 0, '>', true],
|
|
|
|
[1, 1, '>', false],
|
|
|
|
[0, 1, '>', false],
|
|
|
|
// Greater or equal
|
|
|
|
[1, 0, '>=', true],
|
|
|
|
[1, 1, '>=', true],
|
|
|
|
[0, 1, '>=', false],
|
|
|
|
// Equal
|
|
|
|
[1, 0, '=', false],
|
|
|
|
[1, 1, '==', true],
|
|
|
|
[1, '1', '=', true],
|
|
|
|
[1, '0', '==', false],
|
|
|
|
// Identical
|
|
|
|
[1, 0, '===', false],
|
|
|
|
[1, 1, '===', true],
|
|
|
|
[1, '1', '===', false],
|
|
|
|
['a', 'a', '===', true],
|
|
|
|
// Not equal
|
|
|
|
[1, 0, '!=', true],
|
|
|
|
[1, 1, '<>', false],
|
|
|
|
[1, '1', '!=', false],
|
|
|
|
[1, '0', '<>', true],
|
|
|
|
// Not identical
|
|
|
|
[1, 0, '!==', true],
|
|
|
|
[1, 1, '!==', false],
|
|
|
|
[1, '1', '!==', true],
|
|
|
|
[1, '0', '!==', true],
|
|
|
|
// Less or equal
|
|
|
|
[1, 0, '<=', false],
|
|
|
|
[1, 1, '<=', true],
|
|
|
|
[0, 1, '<=', true],
|
|
|
|
// Less
|
|
|
|
[1, 0, '<', false],
|
|
|
|
[1, 1, '<', false],
|
|
|
|
[0, 1, '<', true],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|