The value used during the assertion.
The threshold value.
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.
11.assertGreaterThan(10); // Assert a DUnitAssertError is thrown if assertGreaterThan fails. 11.assertGreaterThan(12).assertThrow!(DUnitAssertError)("Failed asserting greater than");
Assert that a value is greater than a threshold value.