summaryrefslogtreecommitdiff
path: root/src/ch/epfl/maze/tests
diff options
context:
space:
mode:
Diffstat (limited to 'src/ch/epfl/maze/tests')
-rw-r--r--src/ch/epfl/maze/tests/AnimalTest.java2
-rw-r--r--src/ch/epfl/maze/tests/Competition.java2
-rw-r--r--src/ch/epfl/maze/tests/DaedalusTest.java2
-rw-r--r--src/ch/epfl/maze/tests/GhostsTest.java3
-rw-r--r--src/ch/epfl/maze/tests/MazeTest.java2
-rw-r--r--src/ch/epfl/maze/tests/WorldTest.java2
-rw-r--r--src/ch/epfl/maze/tests/ZooTest.java3
7 files changed, 16 insertions, 0 deletions
diff --git a/src/ch/epfl/maze/tests/AnimalTest.java b/src/ch/epfl/maze/tests/AnimalTest.java
index 123c038..67c27e5 100644
--- a/src/ch/epfl/maze/tests/AnimalTest.java
+++ b/src/ch/epfl/maze/tests/AnimalTest.java
@@ -8,6 +8,8 @@ import org.junit.Test;
8 8
9/** 9/**
10 * Test case for {@code Animal} implementation. 10 * Test case for {@code Animal} implementation.
11 *
12 * @author EPFL
11 */ 13 */
12public class AnimalTest extends TestCase { 14public class AnimalTest extends TestCase {
13 15
diff --git a/src/ch/epfl/maze/tests/Competition.java b/src/ch/epfl/maze/tests/Competition.java
index 10a6c84..188570f 100644
--- a/src/ch/epfl/maze/tests/Competition.java
+++ b/src/ch/epfl/maze/tests/Competition.java
@@ -30,6 +30,8 @@ import static org.junit.Assert.assertTrue;
30 * winner against one animal if it obtained a positive score in the rivalry 30 * winner against one animal if it obtained a positive score in the rivalry
31 * against it.</li> 31 * against it.</li>
32 * </ul> 32 * </ul>
33 *
34 * @author EPFL
33 */ 35 */
34public class Competition { 36public class Competition {
35 37
diff --git a/src/ch/epfl/maze/tests/DaedalusTest.java b/src/ch/epfl/maze/tests/DaedalusTest.java
index 6087338..fdca847 100644
--- a/src/ch/epfl/maze/tests/DaedalusTest.java
+++ b/src/ch/epfl/maze/tests/DaedalusTest.java
@@ -12,6 +12,8 @@ import org.junit.Test;
12 12
13/** 13/**
14 * Test case for {@code Daedalus} implementation. 14 * Test case for {@code Daedalus} implementation.
15 *
16 * @author EPFL
15 */ 17 */
16public class DaedalusTest extends TestCase { 18public class DaedalusTest extends TestCase {
17 19
diff --git a/src/ch/epfl/maze/tests/GhostsTest.java b/src/ch/epfl/maze/tests/GhostsTest.java
index f4e0c2e..2195443 100644
--- a/src/ch/epfl/maze/tests/GhostsTest.java
+++ b/src/ch/epfl/maze/tests/GhostsTest.java
@@ -18,6 +18,9 @@ import org.junit.Test;
18 18
19/** 19/**
20 * Test suite for ghosts implementation. 20 * Test suite for ghosts implementation.
21 *
22 * @author EPFL
23 * @author Pacien TRAN-GIRARD
21 */ 24 */
22public class GhostsTest extends TestCase { 25public class GhostsTest extends TestCase {
23 26
diff --git a/src/ch/epfl/maze/tests/MazeTest.java b/src/ch/epfl/maze/tests/MazeTest.java
index 52651e1..8de3dbb 100644
--- a/src/ch/epfl/maze/tests/MazeTest.java
+++ b/src/ch/epfl/maze/tests/MazeTest.java
@@ -9,6 +9,8 @@ import org.junit.Test;
9 9
10/** 10/**
11 * Test case for {@code Maze} implementation. 11 * Test case for {@code Maze} implementation.
12 *
13 * @author EPFL
12 */ 14 */
13public class MazeTest extends TestCase { 15public class MazeTest extends TestCase {
14 16
diff --git a/src/ch/epfl/maze/tests/WorldTest.java b/src/ch/epfl/maze/tests/WorldTest.java
index 845c689..7428ba6 100644
--- a/src/ch/epfl/maze/tests/WorldTest.java
+++ b/src/ch/epfl/maze/tests/WorldTest.java
@@ -14,6 +14,8 @@ import static org.junit.Assert.assertArrayEquals;
14 14
15/** 15/**
16 * Test case for {@code World} implementation. 16 * Test case for {@code World} implementation.
17 *
18 * @author EPFL
17 */ 19 */
18public class WorldTest extends TestCase { 20public class WorldTest extends TestCase {
19 21
diff --git a/src/ch/epfl/maze/tests/ZooTest.java b/src/ch/epfl/maze/tests/ZooTest.java
index 03a84b3..c0daa61 100644
--- a/src/ch/epfl/maze/tests/ZooTest.java
+++ b/src/ch/epfl/maze/tests/ZooTest.java
@@ -11,6 +11,9 @@ import org.junit.Test;
11 11
12/** 12/**
13 * Test cases for animals implementation. 13 * Test cases for animals implementation.
14 *
15 * @author EPFL
16 * @author Pacien TRAN-GIRARD
14 */ 17 */
15public class ZooTest extends TestCase { 18public class ZooTest extends TestCase {
16 19