|
@ -30,4 +30,20 @@ public class GameTest { |
|
|
|
|
|
|
|
|
assertEquals(game.getDrawCardDeck().getFirst(), answer); |
|
|
assertEquals(game.getDrawCardDeck().getFirst(), answer); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Test |
|
|
|
|
|
@DisplayName("GetTwoCardsFromDrawCardDeck") |
|
|
|
|
|
public void GetTwoCardsFromDrawCardDeck() { |
|
|
|
|
|
Game game = new Game(); |
|
|
|
|
|
Card card1 = new Card().setColor(Card.Color.RED).setValue(Card.Value.EIGHT); |
|
|
|
|
|
Card card2 = new Card().setColor(Card.Color.BLUE).setValue(Card.Value.ONE); |
|
|
|
|
|
Card answer1 = card1; |
|
|
|
|
|
Card answer2 = card2; |
|
|
|
|
|
|
|
|
|
|
|
game.addCardToDrawCardDeck(card1); |
|
|
|
|
|
game.addCardToDrawCardDeck(card2); |
|
|
|
|
|
|
|
|
|
|
|
assertEquals(game.getDrawCardDeck().getFirst(), answer1); |
|
|
|
|
|
assertEquals(game.getDrawCardDeck().get(1), answer2); |
|
|
|
|
|
} |
|
|
} |
|
|
} |