Ejemplo n.º 1
0
 def test_create_account_object_with_params(self):
     initID = "001"
     initBalance = 500
     account = Account(initID, initBalance)
     self.assertEqual(initID, account.get_account_id())
     self.assertEqual(initBalance, account.get_account_balance())