-
Notifications
You must be signed in to change notification settings - Fork 201
Asserts
DUnitX provides an Assert class for test evaluation.
Assert provides a number of validation methods. Each of these procedures also takes an optional message string as the last parameter. This string will be formatted with FailFmt
and displayed when the test fails.
Marks the test as passed. Immediately ends the test, skipping any further validation.
Marks the test as failed. Immediately ends the test, skipping any further validation.
Marks the test as failed. Immediately ends the test, skipping any further validation. Message is formatted with Args using Format
.
Marks the test as failed, due to lack of implementation.
Tests Expected and Actual values are equal. Method used to determine equality differs by type. See Assert.pas
Tests Expected and Actual values are not equal. Method used to determine equality differs by type. See Assert.pas