mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2025-01-24 15:48:24 +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\Chebyshev;
|
||
|
|
||
|
class ChebyshevTest extends \PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @var Chebyshev
|
||
|
*/
|
||
|
private $distanceMetric;
|
||
|
|
||
|
public function setUp()
|
||
|
{
|
||
|
$this->distanceMetric = new Chebyshev();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @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 = 2;
|
||
|
$actualDistance = $this->distanceMetric->distance($a, $b);
|
||
|
|
||
|
$this->assertEquals($expectedDistance, $actualDistance);
|
||
|
}
|
||
|
|
||
|
public function testCalculateDistanceForThreeDimensions()
|
||
|
{
|
||
|
$a = [6, 10, 3];
|
||
|
$b = [2, 5, 5];
|
||
|
|
||
|
$expectedDistance = 5;
|
||
|
$actualDistance = $this->distanceMetric->distance($a, $b);
|
||
|
|
||
|
$this->assertEquals($expectedDistance, $actualDistance);
|
||
|
}
|
||
|
}
|