コード例 #1
0
ファイル: test_Player.py プロジェクト: raphaelhazout/Raphael5
 def test_add_amount2(self):
 # בודק אם אני לא מוסיף כסף אז הערך של הכסף נשאר אותו דבר
     player1 = Player('Raphael', 5000, 5)
     deck = DecksOfCards()
     player1.addAmount(0)
     self.assertEqual(player1.money, 5000)
コード例 #2
0
ファイル: test_Player.py プロジェクト: raphaelhazout/Raphael5
 def test_add_amount3(self):
 #בודק אם אני מוסיף מינוס אז לא יורד כלום
     player1 = Player('Raphael', 5000, 5)
     deck = DecksOfCards()
     player1.addAmount(-10)
     self.assertEqual(player1.money, 5000)
コード例 #3
0
ファイル: test_Player.py プロジェクト: raphaelhazout/Raphael5
 def test_add_amount(self):
     # בודק כשאני מוסיף את הכמות כסף באלף היא אכן יורדת
     player1 = Player('Raphael', 5000, 5)
     deck = DecksOfCards()
     player1.addAmount(1000)
     self.assertEqual(player1.money , 6000)