quoridor/src/test/java/cz/xelfi/quoridor/MoveTest.java
author Jaroslav Tulach <jtulach@netbeans.org>
Thu, 10 Sep 2009 23:19:40 +0200
changeset 75 6802034b7a6f
parent 34 34baf57f2d4e
child 264 d60370059c3c
permissions -rw-r--r--
Support for giving up the game
     1 /*
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * The contents of this file are subject to the terms of either the GNU
     5  * General Public License Version 2 only ("GPL") or the Common
     6  * Development and Distribution License("CDDL") (collectively, the
     7  * "License"). You may not use this file except in compliance with the
     8  * License. You can obtain a copy of the License at
     9  * http://www.netbeans.org/cddl-gplv2.html
    10  * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    11  * specific language governing permissions and limitations under the
    12  * License.  When distributing the software, include this License Header
    13  * Notice in each file and include the License file at
    14  * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
    15  * particular file as subject to the "Classpath" exception as provided
    16  * by Sun in the GPL Version 2 section of the License file that
    17  * accompanied this code. If applicable, add the following below the
    18  * License Header, with the fields enclosed by brackets [] replaced by
    19  * your own identifying information:
    20  * "Portions Copyrighted [year] [name of copyright owner]"
    21  *
    22  * Contributor(s):
    23  *
    24  * Portions Copyrighted 2009 Jaroslav Tulach
    25  */
    26 
    27 package cz.xelfi.quoridor;
    28 
    29 import cz.xelfi.quoridor.Fence.Orientation;
    30 import cz.xelfi.quoridor.Player.Direction;
    31 import org.junit.Test;
    32 import static org.junit.Assert.*;
    33 
    34 /**
    35  *
    36  * @author Jaroslav Tulach <jtulach@netbeans.org>
    37  */
    38 public class MoveTest {
    39 
    40     public MoveTest() {
    41     }
    42 
    43     @Test
    44     public void testNorth() throws Exception {
    45         checkValueOf("N", Move.NORTH);
    46     }
    47     @Test
    48     public void testSouth() throws Exception {
    49         checkValueOf("S", Move.SOUTH);
    50     }
    51     @Test
    52     public void testEast() throws Exception {
    53         checkValueOf("E", Move.EAST);
    54     }
    55     @Test
    56     public void testWest() throws Exception {
    57         checkValueOf("W", Move.WEST);
    58     }
    59     @Test
    60     public void testRegisn() throws Exception {
    61         checkValueOf("RESIGN", Move.RESIGN);
    62     }
    63     @Test
    64     public void testJumps() throws Exception {
    65         for (Direction d1 : Direction.values()) {
    66             for (Direction d2 : Direction.values()) {
    67                 checkValueOf("" + d1.name().charAt(0) + d2.name().charAt(0), Move.jump(d1, d2));
    68             }
    69         }
    70     }
    71     @Test
    72     public void testFences() throws Exception {
    73         for (int i = 1; i <= 8; i++) {
    74             for (int j = 0; i < 8; i++) {
    75                 String h = "H" + (char)('A'+ j) + i;
    76                 String v = "V" + (char)('A'+ j) + i;
    77 
    78                 Move hm = Move.fence((char) ('A' + j), i, Orientation.HORIZONTAL);
    79                 Move vm = Move.fence((char) ('A' + j), i, Orientation.VERTICAL);
    80 
    81                 checkValueOf(h, hm);
    82                 checkValueOf(v, vm);
    83             }
    84         }
    85     }
    86 
    87     private static void checkValueOf(String txt, Move move) throws Exception {
    88         assertEquals("toString", txt, move.toString());
    89         assertEquals("valueOf", move, Move.valueOf(txt));
    90     }
    91 
    92 }