| 10459 | } |
| 10460 | |
| 10461 | void RunContext::handleIncomplete( |
| 10462 | AssertionInfo const& info |
| 10463 | ) { |
| 10464 | m_lastAssertionInfo = info; |
| 10465 | |
| 10466 | AssertionResultData data( ResultWas::ThrewException, LazyExpression( false ) ); |
| 10467 | data.message = "Exception translation was disabled by CATCH_CONFIG_FAST_COMPILE"; |
| 10468 | AssertionResult assertionResult{ info, data }; |
| 10469 | assertionEnded( assertionResult ); |
| 10470 | } |
| 10471 | void RunContext::handleNonExpr( |
| 10472 | AssertionInfo const &info, |
| 10473 | ResultWas::OfType resultType, |
no test coverage detected