@Before
public void setup() {
this.accountBalance = mock(AccountBalance.class);
this.hibernateSession = mock(Session.class);
this.currentDateTime = new DateTime();
this.accountBalanceDAO = new AccountBalanceDAO(new Provider<Session>() {
@Override
public Session get() {
return hibernateSession;
}