maven compiles all tests independetly of which tests are run
This commit is contained in:
78
src/test/java/oving5/card/CardHandTest.java.unimplemented
Normal file
78
src/test/java/oving5/card/CardHandTest.java.unimplemented
Normal file
@@ -0,0 +1,78 @@
|
||||
package oving5.card;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
import org.junit.jupiter.api.BeforeEach;
|
||||
import org.junit.jupiter.api.DisplayName;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class CardHandTest {
|
||||
|
||||
private Card s1;
|
||||
private Card c2;
|
||||
private CardHand hand;
|
||||
private Collection<Card> expected;
|
||||
|
||||
private static void testCards(CardContainer it, Collection<Card> expected) {
|
||||
assertEquals(expected.size(), it.getCardCount());
|
||||
|
||||
Iterator<Card> expectedIt = expected.iterator();
|
||||
int i = 0;
|
||||
|
||||
while (expectedIt.hasNext()) {
|
||||
Card expectedCard = expectedIt.next();
|
||||
Card actualCard = it.getCard(i);
|
||||
assertEquals(expectedCard.getSuit(), actualCard.getSuit(),
|
||||
String.format("Card number %d should have been %s, but was %s", i + 1,
|
||||
expectedCard, actualCard));
|
||||
assertEquals(expectedCard.getFace(), actualCard.getFace(),
|
||||
String.format("Card number %d should have been %s, but was %s", i + 1,
|
||||
expectedCard, actualCard));
|
||||
|
||||
i++;
|
||||
}
|
||||
}
|
||||
|
||||
private static void testCards(Iterable<Card> actual, Iterator<Card> expected) {
|
||||
Iterator<Card> actualIt = actual.iterator();
|
||||
|
||||
while (expected.hasNext()) {
|
||||
assertTrue(actualIt.hasNext());
|
||||
|
||||
Card expectedCard = expected.next();
|
||||
Card actualCard = actualIt.next();
|
||||
assertEquals(expectedCard.getSuit(), actualCard.getSuit(), String
|
||||
.format("The card should have been %s, but was %s", expectedCard, actualCard));
|
||||
assertEquals(expectedCard.getFace(), actualCard.getFace(), String
|
||||
.format("The card should have been %s, but was %s", expectedCard, actualCard));
|
||||
}
|
||||
}
|
||||
|
||||
@BeforeEach
|
||||
public void setUp() {
|
||||
s1 = new Card('S', 1);
|
||||
c2 = new Card('C', 2);
|
||||
hand = new CardHand();
|
||||
expected = new ArrayList<>(List.of(s1, c2));
|
||||
}
|
||||
|
||||
@Test
|
||||
@DisplayName("Checks that CardContainer works with CardHand")
|
||||
public void testCardContainer() {
|
||||
hand.addCard(s1);
|
||||
hand.addCard(c2);
|
||||
CardHandTest.testCards(hand, expected);
|
||||
}
|
||||
|
||||
@Test
|
||||
@DisplayName("Checks that the iterator works with CardHand")
|
||||
public void testDeckIterator() {
|
||||
hand.addCard(s1);
|
||||
hand.addCard(c2);
|
||||
CardHandTest.testCards(hand, expected.iterator());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user