phpOMS/tests/Algorithm/PathFinding/AStarNodeTest.php
Dennis Eichhorn a1b591d141 fix tests
2024-03-20 03:00:25 +00:00

107 lines
2.6 KiB
PHP
Executable File

<?php
/**
* Jingga
*
* PHP Version 8.1
*
* @package tests
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace phpOMS\tests\Algorithm\PathFinding;
use phpOMS\Algorithm\PathFinding\AStarNode;
require_once __DIR__ . '/../../Autoloader.php';
/**
* @testdox phpOMS\tests\Algorithm\PathFinding\AStarNode: AStarNode on grid for path finding
*
* @internal
*/
final class AStarNodeTest extends \PHPUnit\Framework\TestCase
{
protected $node;
/**
* {@inheritdoc}
*/
protected function setUp() : void
{
$this->node = new AStarNode(1, 2, 3.0, false);
}
/**
* @testdox The node has the expected values after initialization
* @covers \phpOMS\Algorithm\PathFinding\AStarNode
* @group framework
*/
public function testDefault() : void
{
self::assertFalse($this->node->isClosed());
self::assertFalse($this->node->isOpened());
self::assertEquals(0.0, $this->node->getG());
self::assertNull($this->node->getH());
self::assertEquals(0.0, $this->node->getF());
}
/**
* @testdox The node can be set closed and checked
* @covers \phpOMS\Algorithm\PathFinding\AStarNode
* @group framework
*/
public function testClosedInputOutput() : void
{
$this->node->setClosed(true);
self::assertTrue($this->node->isClosed());
}
/**
* @testdox The node can be set opened and checked
* @covers \phpOMS\Algorithm\PathFinding\AStarNode
* @group framework
*/
public function testOpenedInputOutput() : void
{
$this->node->setOpened(true);
self::assertTrue($this->node->isOpened());
}
/**
* @testdox The g value cen be set and returned
* @covers \phpOMS\Algorithm\PathFinding\AStarNode
* @group framework
*/
public function testGInputOutput() : void
{
$this->node->setG(2.0);
self::assertEquals(2.0, $this->node->getG());
}
/**
* @testdox The h value cen be set and returned
* @covers \phpOMS\Algorithm\PathFinding\AStarNode
* @group framework
*/
public function testHInputOutput() : void
{
$this->node->setH(2.0);
self::assertEquals(2.0, $this->node->getH());
}
/**
* @testdox The f value cen be set and returned
* @covers \phpOMS\Algorithm\PathFinding\AStarNode
* @group framework
*/
public function testFInputOutput() : void
{
$this->node->setF(2.0);
self::assertEquals(2.0, $this->node->getF());
}
}