public boolean waitForInitialize()

in component-test/src/main/java/org/apache/fineract/cn/teller/AbstractTellerTest.java [133:141]


  public boolean waitForInitialize() {
    try {
      final String version = this.applicationName.getVersionString();
      this.logger.info("Waiting on initialize event for version: {}.", version);
      return this.eventRecorder.wait(EventConstants.INITIALIZE, version);
    } catch (final InterruptedException e) {
      throw new IllegalStateException(e);
    }
  }