package rocks.zipcode; import org.junit.Assert; import org.junit.Test; import java.util.ArrayList; import java.util.Collections; public class CardsTest { @org.junit.Before public void setUp() throws Exception { } @org.junit.After public void tearDown() throws Exception { } // @org.junit.Test // public void generateCard() { // Cards card = new Cards(); // Integer testCardValue = card.generateCard(); // // assertTrue((testCardValue >= 1 && testCardValue <= 13)); // } @Test public void testRank() { } @Test public void testSuit() { } @Test public void testToString() { } @Test public void testNewDeck() { ArrayList deck = Cards.newDeck(); for (Cards card : deck) { System.out.println(card.toString()); } Assert.assertTrue(true); } @Test public void testShuffleDeck() { ArrayList deck = Cards.newDeck(); Collections.shuffle(deck); for (Cards card : deck) { System.out.println(card.toString()); } Assert.assertTrue(true); } }