def test_is_empty_false(self): hand = Hand() deck = Deck() hand.add_to_hand(deck.draw()) result = hand.is_empty() self.assertEqual(False, result)
def test_is_emoty_true(self): hand = Hand() result = hand.is_empty() self.assertEqual(True, result)