-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JadasBankAtm #326
JadasBankAtm #326
Conversation
Hey, I need some help, my deposit funds and withdraw funds tests are failing. The error says the account is not found. I don't understand what this means |
Try to troubleshoot by setting a breakpoint in the |
*/ | ||
public void depositFunds(String accountNumber, double amount) { | ||
public void depositFunds(String accountNumber, MoneyOrder moneyOrder) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would expect that Check
and a MoneyOrder
both implement the FinancialInstrument
interface and can be provided to the other depositFunds
method.
No description provided.