Beispiel #1
0
 def transfer_funds(cls, client_id, account_idw, account_idd, amount):
     return AccountDAOImpl.transfer_funds(int(client_id), int(account_idw),
                                          int(account_idd), int(amount))
 def test_transfer_funds(self):
     assert AccountDAOImpl.transfer_funds(1, 4, 16)