mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2025-01-09 16:36:34 +00:00
19 lines
356 B
PHP
19 lines
356 B
PHP
|
<?php
|
||
|
declare(strict_types = 1);
|
||
|
|
||
|
namespace tests\Phpml\Metric;
|
||
|
|
||
|
use Phpml\Metric\Distance;
|
||
|
|
||
|
class DistanceTest extends \PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @expectedException \Phpml\Exception\InvalidArgumentException
|
||
|
*/
|
||
|
public function testThrowExceptionOnInvalidArguments()
|
||
|
{
|
||
|
Distance::euclidean([0, 1, 2], [0, 2]);
|
||
|
}
|
||
|
|
||
|
}
|