Exemplo n.º 1
0
 @Test
 public void testSimulate() {
   assertFalse(bs_w.simulate(7, 3));
 }
Exemplo n.º 2
0
 @Test
 public void testGetX() {
   assertTrue(bs_w.getX() == 7);
   assertTrue(p1.getX() == 7);
   assertTrue(p1_b.getX() == 6);
 }
Exemplo n.º 3
0
 @Test
 public void testGetY() {
   assertTrue(bs_w.getY() == 5);
   assertTrue(p1.getY() == 4);
   assertTrue(p1_b.getY() == 2);
 }
Exemplo n.º 4
0
 @Test
 public void testGetType() {
   assertTrue(bs_w.getType() == ChessBoard.WHITE);
   assertTrue(p1.getType() == ChessBoard.WHITE);
   assertTrue(p1_b.getType() == ChessBoard.BLACK);
 }