| 13109 | } |
| 13110 | |
| 13111 | void RunContext::handleIncomplete( |
| 13112 | AssertionInfo const& info |
| 13113 | ) { |
| 13114 | m_lastAssertionInfo = info; |
| 13115 | |
| 13116 | AssertionResultData data( ResultWas::ThrewException, LazyExpression( false ) ); |
| 13117 | data.message = "Exception translation was disabled by CATCH_CONFIG_FAST_COMPILE"; |
| 13118 | AssertionResult assertionResult{ info, data }; |
| 13119 | assertionEnded( assertionResult ); |
| 13120 | } |
| 13121 | void RunContext::handleNonExpr( |
| 13122 | AssertionInfo const &info, |
| 13123 | ResultWas::OfType resultType, |
no test coverage detected