mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2025-01-10 00:37:55 +00:00
65 lines
1.4 KiB
PHP
65 lines
1.4 KiB
PHP
|
<?php
|
||
|
|
||
|
declare (strict_types = 1);
|
||
|
|
||
|
namespace tests\Phpml\Metric;
|
||
|
|
||
|
use Phpml\Metric\Distance\Manhattan;
|
||
|
|
||
|
class ManhattanTest extends \PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @var Manhattan
|
||
|
*/
|
||
|
private $distanceMetric;
|
||
|
|
||
|
public function setUp()
|
||
|
{
|
||
|
$this->distanceMetric = new Manhattan();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @expectedException \Phpml\Exception\InvalidArgumentException
|
||
|
*/
|
||
|
public function testThrowExceptionOnInvalidArguments()
|
||
|
{
|
||
|
$a = [0, 1, 2];
|
||
|
$b = [0, 2];
|
||
|
|
||
|
$this->distanceMetric->distance($a, $b);
|
||
|
}
|
||
|
|
||
|
public function testCalculateDistanceForOneDimension()
|
||
|
{
|
||
|
$a = [4];
|
||
|
$b = [2];
|
||
|
|
||
|
$expectedDistance = 2;
|
||
|
$actualDistance = $this->distanceMetric->distance($a, $b);
|
||
|
|
||
|
$this->assertEquals($expectedDistance, $actualDistance);
|
||
|
}
|
||
|
|
||
|
public function testCalculateDistanceForTwoDimensions()
|
||
|
{
|
||
|
$a = [4, 6];
|
||
|
$b = [2, 5];
|
||
|
|
||
|
$expectedDistance = 3;
|
||
|
$actualDistance = $this->distanceMetric->distance($a, $b);
|
||
|
|
||
|
$this->assertEquals($expectedDistance, $actualDistance);
|
||
|
}
|
||
|
|
||
|
public function testCalculateDistanceForThreeDimensions()
|
||
|
{
|
||
|
$a = [6, 10, 3];
|
||
|
$b = [2, 5, 5];
|
||
|
|
||
|
$expectedDistance = 11;
|
||
|
$actualDistance = $this->distanceMetric->distance($a, $b);
|
||
|
|
||
|
$this->assertEquals($expectedDistance, $actualDistance);
|
||
|
}
|
||
|
}
|