micher43

Testing E3.3

Sep 30th, 2014
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.42 KB | None | 0 0
  1. //no need to import BankAccount because it's in the same class
  2. public class BankAccountTester {
  3.  
  4.     public static void main(String[] args) {
  5.         BankAccount exampleAccount = new BankAccount();
  6.         exampleAccount.Deposit(1000.00);
  7.         exampleAccount.Withdraw(500.00);
  8.         exampleAccount.Withdraw(400.00);
  9.         System.out.println(exampleAccount.GetBalance());
  10.         System.out.println("The expected balance is 1100.00");
  11.        
  12.  
  13.     }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment