Advertisement
onitnaks

Untitled

Feb 19th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. Display ipad = mock(iPad.Class);
  2. BankAccount account = new BankAccount(ipad);
  3. double balance = account.getBalance(); // will likely be 0 unless there is some default value forced on it
  4. account.withdraw(13.00);
  5. verify(ipad).displayLine(String.ValueOf(balance - 13.00));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement