php-ml/tests/Phpml/Math/Distance/ChebyshevTest.php

66 lines
1.4 KiB
PHP
Raw Normal View History

2016-04-11 19:44:48 +00:00
<?php
2016-11-20 21:53:17 +00:00
declare(strict_types=1);
2016-04-11 19:44:48 +00:00
namespace tests\Phpml\Metric;
2016-04-20 21:56:33 +00:00
use Phpml\Math\Distance\Chebyshev;
2017-02-03 11:58:25 +00:00
use PHPUnit\Framework\TestCase;
2016-04-11 19:44:48 +00:00
2017-02-03 11:58:25 +00:00
class ChebyshevTest extends TestCase
2016-04-11 19:44:48 +00:00
{
/**
* @var Chebyshev
*/
private $distanceMetric;
public function setUp(): void
2016-04-11 19:44:48 +00:00
{
$this->distanceMetric = new Chebyshev();
}
/**
* @expectedException \Phpml\Exception\InvalidArgumentException
*/
public function testThrowExceptionOnInvalidArguments(): void
2016-04-11 19:44:48 +00:00
{
$a = [0, 1, 2];
$b = [0, 2];
$this->distanceMetric->distance($a, $b);
}
public function testCalculateDistanceForOneDimension(): void
2016-04-11 19:44:48 +00:00
{
$a = [4];
$b = [2];
$expectedDistance = 2;
$actualDistance = $this->distanceMetric->distance($a, $b);
$this->assertEquals($expectedDistance, $actualDistance);
}
public function testCalculateDistanceForTwoDimensions(): void
2016-04-11 19:44:48 +00:00
{
$a = [4, 6];
$b = [2, 5];
$expectedDistance = 2;
$actualDistance = $this->distanceMetric->distance($a, $b);
$this->assertEquals($expectedDistance, $actualDistance);
}
public function testCalculateDistanceForThreeDimensions(): void
2016-04-11 19:44:48 +00:00
{
$a = [6, 10, 3];
$b = [2, 5, 5];
$expectedDistance = 5;
$actualDistance = $this->distanceMetric->distance($a, $b);
$this->assertEquals($expectedDistance, $actualDistance);
}
}