Esempio n. 1
0
 def test_card_symbol(self):
     testCard = Card('Spades', 'Jack')
     result = testCard.card_symbol()
     self.assertEqual(result, 'S')
Esempio n. 2
0
 def test_card_symbol3(self):
     testCard = Card('Diamonds', 'Jack')
     result = testCard.card_symbol()
     self.assertEqual(result, 'D')
Esempio n. 3
0
 def test_card_symbol4(self):
     testCard = Card('Clubs', 'Jack')
     result = testCard.card_symbol()
     self.assertEqual(result, 'C')
Esempio n. 4
0
 def test_card_symbol2(self):
     testCard = Card('Hearts', 'Jack')
     result = testCard.card_symbol()
     self.assertEqual(result, 'H')