Advertisement
Guest User

Untitled

a guest
Oct 9th, 2015
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.43 KB | None | 0 0
  1.  @Test
  2.   public void whiteplayershouldbewinner()
  3.   {    
  4.       game.move(6, 0, 5, 0);
  5.       game.move(1,0,2,1);
  6.       game.move(5,0,4,0);
  7.       game.move(0,0,1,0);
  8.       game.move(4,0,3,0);
  9.       game.move(2,1,3,1);
  10.       game.move(3,0,2,0);
  11.       game.move(1,0,2,1);
  12.       game.move(2,0,1,0);
  13.       game.move(0,5, 1, 5);
  14.       game.move(1,0,0,0);
  15.      
  16.      
  17.      
  18.       assertEquals("white Player Wins", BreakthroughImpl.PieceType.WHITE, game.getWinner());
  19.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement