Example #1
0
 def withdraw_from_account(cls, client_id, account_id, amount):
     return AccountDAOImpl.withdraw_from_account(int(client_id),
                                                 int(account_id),
                                                 int(amount))
 def test_withdraw_from_account(self):
     assert AccountDAOImpl.withdraw_from_account(1, 5, 10)