Assert.assertEquals(GameStatus.Wind1, game.getStatus());
}
@Test public void wind2Test() throws Exception {
Game game = gameServer.startUp("manuel");
game = gameServer.joinPlayer(game.getId(), "maeve");
gameServer.addShip(1L,"manuel", ships1);
gameServer.addShip(1L,"maeve", ships2);
shotShip2(gameServer,cellShip1);
shotShip2(gameServer,cellShip2);
shotShip2(gameServer,cellShip3);
shotShip2(gameServer,cellShip4);
shotShip2(gameServer,cellShip5);
shotShip2(gameServer,cellShip6);
shotShip2(gameServer,cellShip7);
Assert.assertEquals(GameStatus.Wind2, game.getStatus());
}