| 8862 | } |
| 8863 | |
| 8864 | void RunContext::handleIncomplete(AssertionInfo const &info) { |
| 8865 | m_lastAssertionInfo = info; |
| 8866 | |
| 8867 | AssertionResultData data(ResultWas::ThrewException, LazyExpression(false)); |
| 8868 | data.message = "Exception translation was disabled by CATCH_CONFIG_FAST_COMPILE"; |
| 8869 | AssertionResult assertionResult{info, data}; |
| 8870 | assertionEnded(assertionResult); |
| 8871 | } |
| 8872 | void RunContext::handleNonExpr(AssertionInfo const &info, ResultWas::OfType resultType, AssertionReaction &reaction) { |
| 8873 | m_lastAssertionInfo = info; |
| 8874 |
no test coverage detected