public void shouldNotFindAccountUnknown()

in component-test/src/main/java/org/apache/fineract/cn/accounting/TestAccount.java [177:184]


  public void shouldNotFindAccountUnknown() {
    final String randomName = RandomStringUtils.randomAlphanumeric(8);
    try {
      this.testSubject.findAccount(randomName);
      Assert.fail();
    } catch (final AccountNotFoundException ignored) {
    }
  }