assertTrueMsg(message: String; condition: Boolean);
The assertTrueMsg method of the JadeTestCase class is invoked by a user test method to evaluate the result of the test, represented by the value of the condition parameter.
A message is provided in the message parameter for the case when the test fails, indicated by the condition parameter evaluating to false.
The following code example shows the use of the assertTrueMsg method in a user test method.
add() unitTest; begin calculator.add(1); calculator.add(1); assertTrueMsg("Addition error", calculator.getResult() = 2); end;
A failure in the test method results in the testFailure method being executed by an object implementing the JadeTestListenerIF interface. For details, see "