From a47697a10e4af60ddbb8adb95fd1339278154815 Mon Sep 17 00:00:00 2001 From: adrian_gonzalez Date: Sun, 31 Mar 2013 22:20:18 +0200 Subject: [PATCH] Corrected names in tests of ADStarMazeTest --- .../citius/lab/hipster/algorithm/ADStarMazeTest.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/test/java/es/usc/citius/lab/hipster/algorithm/ADStarMazeTest.java b/src/test/java/es/usc/citius/lab/hipster/algorithm/ADStarMazeTest.java index c829f70..1b07c77 100644 --- a/src/test/java/es/usc/citius/lab/hipster/algorithm/ADStarMazeTest.java +++ b/src/test/java/es/usc/citius/lab/hipster/algorithm/ADStarMazeTest.java @@ -36,7 +36,7 @@ public ADStarMazeTest() { @Test - public void AStar_Maze1() throws InterruptedException { + public void ADStar_Maze1() throws InterruptedException { StringMaze maze = new StringMaze(MazeSearch.getTestMaze1()); execute(maze, true); } @@ -48,7 +48,7 @@ public void Dijkstra_Maze1() throws InterruptedException { } @Test - public void AStar_Maze2() throws InterruptedException { + public void ADStar_Maze2() throws InterruptedException { StringMaze maze = new StringMaze(MazeSearch.getTestMaze2()); execute(maze, true); } @@ -60,7 +60,7 @@ public void Dijkstra_Maze2() throws InterruptedException { } @Test - public void AStar_Maze3() throws InterruptedException { + public void ADStar_Maze3() throws InterruptedException { StringMaze maze = new StringMaze(MazeSearch.getTestMaze3()); execute(maze, true); } @@ -72,7 +72,7 @@ public void Dijkstra_Maze3() throws InterruptedException { } @Test - public void AStar_Maze4() throws InterruptedException { + public void ADStar_Maze4() throws InterruptedException { StringMaze maze = new StringMaze(MazeSearch.getTestMaze4()); execute(maze, true); } @@ -84,7 +84,7 @@ public void Dijkstra_Maze4() throws InterruptedException { } @Test - public void AStar_Maze5() throws InterruptedException { + public void ADStar_Maze5() throws InterruptedException { StringMaze maze = new StringMaze(MazeSearch.getTestMaze5()); execute(maze, true); }