From df3824911c048877612603b234f87ce9e27c2df6 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 15 Dec 2019 12:45:59 +0100 Subject: [PATCH] add maze generator --- Config/reportLang.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Config/reportLang.php b/Config/reportLang.php index 65eca13..f8997ae 100644 --- a/Config/reportLang.php +++ b/Config/reportLang.php @@ -139,6 +139,10 @@ return [ 'phpOMS\tests\Algorithm\Knapsack\ItemTest' => ['description' => 'The default item to be added to the backpack or basket', 'type' => 'framework'], 'phpOMS\tests\Algorithm\Knapsack\ItemTest:testDefault' => ['description' => 'The item has the expected values after initialization', 'type' => 'framework'], + 'phpOMS\tests\Algorithm\Maze\MazeGeneratorTest' => ['description' => 'Maze generation', 'type' => 'framework'], + 'phpOMS\tests\Algorithm\Maze\MazeGeneratorTest:testMazeGeneration' => ['description' => 'A random maze can be generated', 'type' => 'framework'], + 'phpOMS\tests\Algorithm\Maze\MazeGeneratorTest:testMazeRender' => ['description' => 'A random maze can be rendered', 'type' => 'framework'], + 'phpOMS\tests\Algorithm\PathFinding\AStarTest' => ['description' => 'AStar path finding', 'type' => 'framework'], 'phpOMS\tests\Algorithm\PathFinding\AStarTest:testPathFindingDiagonal' => ['description' => 'The correct path is found for diagonal movement', 'type' => 'framework'], 'phpOMS\tests\Algorithm\PathFinding\AStarTest:testPathFindingStraight' => ['description' => 'The correct path is found for straight movement', 'type' => 'framework'],