summaryrefslogtreecommitdiff
path: root/src/ch/epfl/maze/tests/MazeTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/ch/epfl/maze/tests/MazeTest.java')
-rw-r--r--src/ch/epfl/maze/tests/MazeTest.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/ch/epfl/maze/tests/MazeTest.java b/src/ch/epfl/maze/tests/MazeTest.java
index c0660db..52651e1 100644
--- a/src/ch/epfl/maze/tests/MazeTest.java
+++ b/src/ch/epfl/maze/tests/MazeTest.java
@@ -10,7 +10,6 @@ import org.junit.Test;
10/** 10/**
11 * Test case for {@code Maze} implementation. 11 * Test case for {@code Maze} implementation.
12 */ 12 */
13
14public class MazeTest extends TestCase { 13public class MazeTest extends TestCase {
15 14
16 private final static int[][] LABYRINTH = { 15 private final static int[][] LABYRINTH = {
@@ -22,7 +21,6 @@ public class MazeTest extends TestCase {
22 /** 21 /**
23 * Test case for several methods in {@code Maze}. 22 * Test case for several methods in {@code Maze}.
24 */ 23 */
25
26 @Test 24 @Test
27 public void testGeneral() { 25 public void testGeneral() {
28 Maze maze = new Maze(LABYRINTH); 26 Maze maze = new Maze(LABYRINTH);
@@ -62,7 +60,6 @@ public class MazeTest extends TestCase {
62 /** 60 /**
63 * Test case for {@code reset()}. 61 * Test case for {@code reset()}.
64 */ 62 */
65
66 @Test 63 @Test
67 public void testReset() { 64 public void testReset() {
68 Maze maze = new Maze(LABYRINTH); 65 Maze maze = new Maze(LABYRINTH);
@@ -85,4 +82,5 @@ public class MazeTest extends TestCase {
85 82
86 assertTrue("Animal in Maze should be a Mouse", retrieved != null); 83 assertTrue("Animal in Maze should be a Mouse", retrieved != null);
87 } 84 }
85
88} 86}