@Test public void checkAccountActivityWithdrawal() { Account a = new Account(Account.CHECKING); a.deposit(10); a.withdraw(5); assertFalse(a.accountInactive()); }
@Test public void checkAccountActivityDeposit() { Account a = new Account(Account.CHECKING); a.deposit(10); assertTrue(a.accountInactive()); }