private void When_the_first_player_places_a_three_in_the_first_location() { Place place = new Place(); place.GameId = _game.Id; place.Coin = new Coin(CoinValue.Three, CoinSide.Heads); place.LocationId = _game.Map.Locations.First().Id; _game = _gameService.Post(place); }
private void When_I_start_a_new_game() { _game = _gameService.Post(_createGameParameters); }