The value used during the assertion.
The error message to display.
The file name where the error occurred. The value is added automatically at the call site.
The line where the error occurred. The value is added automatically at the call site.
DUnitAssertError if the assertation fails.
true.assertTrue(); // Assert a DUnitAssertError is thrown if assertTrue fails. false.assertTrue().assertThrow!(DUnitAssertError)("Failed asserting true");
Assert that a boolean value is true.