component-test/src/main/java/org/apache/fineract/cn/cheque/TestCheques.java [177:185]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    final ChequeTransaction chequeTransaction = new ChequeTransaction();
    chequeTransaction.setChequesReceivableAccount(RandomStringUtils.randomAlphabetic(34));
    chequeTransaction.setCheque(randomCheque);
    chequeTransaction.setCreditorAccountNumber(RandomStringUtils.randomAlphanumeric(34));
    super.chequeManager.process(chequeTransaction);

    Assert.assertTrue(
        super.eventRecorder.wait(EventConstants.CHEQUE_TRANSACTION, MICRParser.toIdentifier(randomCheque.getMicr()))
    );
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



component-test/src/main/java/org/apache/fineract/cn/cheque/TestCheques.java [253:261]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      final ChequeTransaction chequeTransaction = new ChequeTransaction();
      chequeTransaction.setChequesReceivableAccount(RandomStringUtils.randomAlphabetic(34));
      chequeTransaction.setCheque(randomCheque);
      chequeTransaction.setCreditorAccountNumber(RandomStringUtils.randomAlphanumeric(34));
      super.chequeManager.process(chequeTransaction);

      Assert.assertTrue(
          super.eventRecorder.wait(EventConstants.CHEQUE_TRANSACTION, MICRParser.toIdentifier(randomCheque.getMicr()))
      );
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



