private void With_the_following_board(string[] topRow, string[] middleRow, string[] bottomRow) { Game = new TicTacToeGame(new[] { topRow, middleRow, bottomRow }); }
private void With_the_following_board(string[] topRow, string[] middleRow, string[] bottomRow) { Game = new TicTacToeGame(new[] {topRow, middleRow, bottomRow}); }
private void Given_a_game_is_started() { Game = new TicTacToeGame(); }