@Test
  public void deposit() {
    Account account = new Account(TEST_ACCOUNT_NO, 100);
    accountDao.findAccount(TEST_ACCOUNT_NO);
    easyMock.expectLastCall().andReturn(account); // mockControl.setReturnValue(account);
    account.setBalance(150);
    accountDao.updateAccount(account);
    easyMock.replay();

    accountService.deposit(TEST_ACCOUNT_NO, 50);
    easyMock.verify();
  }