예제 #1
0
 def test_charge(self):
     card = CreditCard("Mr. Test", "TBank Inc", "20 677 880", 1000)
     with self.assertRaises(ValueError):
         card.charge("abcd")
예제 #2
0
 def test_make_payment(self):
     card = CreditCard("Mr. Test", "TBank Inc", 200, 1000)
     with self.assertRaises(ValueError):
         card.make_payment("a")