@Test
  public void countOfAccounts() {

    Integer customerId = Integer.valueOf(1);
    Integer customerWithActiveAccount = Integer.valueOf(1);
    List<AccountBO> accounts =
        customerDao.findGLIMLoanAccountsApplicableTo(customerId, customerWithActiveAccount);

    assertThat(accounts.size(), is(0));
  }