}
@Test
public void testDifferentHands() throws PlayerAlreadyInGameException, PlaceTakenException, PlaceDoesNotExistException, YouMustNotException {
Collection<Card> handCards = new ArrayList<Card>();
Game jass = new Game(this.player1);
jass.addPlayer(this.player2, 1);
jass.addPlayer(this.player3, 2);
jass.addPlayer(this.player4, 3);
jass.start(this.player1);
for (IPlayer player : jass.getPlayers()) {
handCards.addAll(player.getHandCards());
}
Assert.assertEquals(36, handCards.size());
for (Card checkCard : handCards) {