Example #1
0
 private void With_the_following_board(string[] topRow, string[] middleRow, string[] bottomRow)
 {
     Game = new TicTacToeGame(new[] { topRow, middleRow, bottomRow });
 }
Example #2
0
 private void With_the_following_board(string[] topRow, string[] middleRow, string[] bottomRow)
 {
     Game = new TicTacToeGame(new[] {topRow, middleRow, bottomRow});
 }
Example #3
0
 private void Given_a_game_is_started()
 {
     Game = new TicTacToeGame();
 }
Example #4
0
 private void Given_a_game_is_started()
 {
     Game = new TicTacToeGame();
 }