public class DeckTestMain {

	public static void main( String [] args )
	{
		//declare and initialize a Deck object
		Deck myDeck = new Deck();
		
		//declare a Card array and make it reference the Card array inside of Deck
		Card [] cardArray = myDeck.getDeck();

		//iterate through the Card array and use each Card element's print()  method
		for (int i = 0; i < cardArray.length; i++)
		{
			cardArray[i].print();
		}
	}
}