| 404 | } |
| 405 | |
| 406 | void TestContext::checkFailed(const char* expr, const char* file, int line) FL_NOEXCEPT { |
| 407 | AssertResult result(false); |
| 408 | result.mExpression = expr; |
| 409 | result.mLocation = SourceLocation(file, line); |
| 410 | reportAssert(result); |
| 411 | } |
| 412 | |
| 413 | void TestContext::requireFailed(const char* expr, const char* file, int line) FL_NOEXCEPT { |
| 414 | checkFailed(expr, file, line); |
nothing calls this directly
no test coverage detected