import playing_cards

# testout PokerHand

adeck = playing_cards.Deck()
adeck.shuffle()

ph1 = playing_cards.PokerHand()
ph2 = playing_cards.PokerHand()
ph3 = playing_cards.PokerHand()

for _ in range(5):
    c = adeck.deal()
    ph1.add_to_hand(c)
    c = adeck.deal()
    ph2.add_to_hand(c)
    c = adeck.deal()
    ph3.add_to_hand(c)

print(str(ph1))
print(str(ph2))
print(str(ph3))
