mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
81 lines
2.1 KiB
PHP
81 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.4
|
|
*
|
|
* @package tests
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\tests\Algorithm\Clustering;
|
|
|
|
use phpOMS\Algorithm\Clustering\Point;
|
|
|
|
/**
|
|
* @testdox phpOMS\tests\Algorithm\Clustering\PointTest: Default point in a cluster
|
|
*
|
|
* @internal
|
|
*/
|
|
class PointTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
/**
|
|
* @testdox The point has the expected default values after initialization
|
|
* @covers phpOMS\Algorithm\Clustering\Point
|
|
*/
|
|
public function testDefault() : void
|
|
{
|
|
$point = new Point([3.0, 2.0], 'abc');
|
|
|
|
self::assertEquals([3.0, 2.0], $point->getCoordinates());
|
|
self::assertEquals(3.0, $point->getCoordinate(0));
|
|
self::assertEquals(2.0, $point->getCoordinate(1));
|
|
self::assertEquals(0, $point->getGroup());
|
|
self::assertEquals('abc', $point->getName());
|
|
}
|
|
|
|
/**
|
|
* @testdox Coordinates of a point can be set and returned
|
|
* @covers phpOMS\Algorithm\Clustering\Point
|
|
*/
|
|
public function testCoordinateInputOutput() : void
|
|
{
|
|
$point = new Point([3.0, 2.0], 'abc');
|
|
|
|
$point->setCoordinate(0, 4.0);
|
|
$point->setCoordinate(1, 1.0);
|
|
|
|
self::assertEquals([4.0, 1.0], $point->getCoordinates());
|
|
self::assertEquals(4.0, $point->getCoordinate(0));
|
|
self::assertEquals(1.0, $point->getCoordinate(1));
|
|
}
|
|
|
|
/**
|
|
* @testdox The group/cluster of a point can be set and returned
|
|
* @covers phpOMS\Algorithm\Clustering\Point
|
|
*/
|
|
public function testGroupInputOutput() : void
|
|
{
|
|
$point = new Point([3.0, 2.0], 'abc');
|
|
|
|
$point->setGroup(2);
|
|
self::assertEquals(2, $point->getGroup());
|
|
}
|
|
|
|
/**
|
|
* @testdox The name of a point can be set and returned
|
|
* @covers phpOMS\Algorithm\Clustering\Point
|
|
*/
|
|
public function testNameInputOutput() : void
|
|
{
|
|
$point = new Point([3.0, 2.0], 'abc');
|
|
|
|
$point->setName('xyz');
|
|
self::assertEquals('xyz', $point->getName());
|
|
}
|
|
}
|