int compare;
int quality1, quality2;
Map<String, Integer> rankMap = new HashMap<String, Integer>();
double totalTests = 10000.0;
for (int j = 0; j < totalTests; j++) {
Deck deck = Deck.createTruelyRandomDeck();
Hand hand1 = new Hand(deck.deal(5));
Hand hand2 = new Hand(deck.deal(5));
compare = hand1.compareTo(hand2);
qualityGreater = (compare == 1);
qualitySmaller = (compare == -1);
qualityEqual = (compare == 0);