quoridor/src/test/java/cz/xelfi/quoridor/MoveTest.java
changeset 75 6802034b7a6f
parent 34 34baf57f2d4e
child 264 d60370059c3c
     1.1 --- a/quoridor/src/test/java/cz/xelfi/quoridor/MoveTest.java	Sun Jul 12 13:35:58 2009 +0200
     1.2 +++ b/quoridor/src/test/java/cz/xelfi/quoridor/MoveTest.java	Thu Sep 10 23:19:40 2009 +0200
     1.3 @@ -28,10 +28,6 @@
     1.4  
     1.5  import cz.xelfi.quoridor.Fence.Orientation;
     1.6  import cz.xelfi.quoridor.Player.Direction;
     1.7 -import org.junit.After;
     1.8 -import org.junit.AfterClass;
     1.9 -import org.junit.Before;
    1.10 -import org.junit.BeforeClass;
    1.11  import org.junit.Test;
    1.12  import static org.junit.Assert.*;
    1.13  
    1.14 @@ -61,6 +57,10 @@
    1.15          checkValueOf("W", Move.WEST);
    1.16      }
    1.17      @Test
    1.18 +    public void testRegisn() throws Exception {
    1.19 +        checkValueOf("RESIGN", Move.RESIGN);
    1.20 +    }
    1.21 +    @Test
    1.22      public void testJumps() throws Exception {
    1.23          for (Direction d1 : Direction.values()) {
    1.24              for (Direction d2 : Direction.values()) {