summaryrefslogtreecommitdiff
path: root/src/ch/epfl/maze/tests/AnimalTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/ch/epfl/maze/tests/AnimalTest.java')
-rw-r--r--src/ch/epfl/maze/tests/AnimalTest.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ch/epfl/maze/tests/AnimalTest.java b/src/ch/epfl/maze/tests/AnimalTest.java
index 67c27e5..0b02442 100644
--- a/src/ch/epfl/maze/tests/AnimalTest.java
+++ b/src/ch/epfl/maze/tests/AnimalTest.java
@@ -6,10 +6,10 @@ import ch.epfl.maze.util.Vector2D;
6import junit.framework.TestCase; 6import junit.framework.TestCase;
7import org.junit.Test; 7import org.junit.Test;
8 8
9import java.util.Set;
10
9/** 11/**
10 * Test case for {@code Animal} implementation. 12 * Test case for {@code Animal} implementation.
11 *
12 * @author EPFL
13 */ 13 */
14public class AnimalTest extends TestCase { 14public class AnimalTest extends TestCase {
15 15
@@ -79,7 +79,7 @@ public class AnimalTest extends TestCase {
79 } 79 }
80 80
81 @Override 81 @Override
82 public Direction move(Direction[] choices) { 82 public Direction move(Set<Direction> choices) {
83 return null; 83 return null;
84 } 84 }
85 85