Exemple #1
0
 public static void VerifyBoardState(this Game game, string[] firstRow, string[] secondRow, string[] thirdRow)
 {
     Assert.IsTrue(game.Equals(new Game(firstRow, secondRow, thirdRow)));
 }
 public static void VerifyBoardState(this Game game, string[] firstRow, string[] secondRow, string[] thirdRow)
 {
     game.Equals(new Game(firstRow, secondRow, thirdRow)).ShouldBe(true);
 }