| 12885 | } |
| 12886 | |
| 12887 | void RunContext::handleIncomplete( |
| 12888 | AssertionInfo const& info |
| 12889 | ) { |
| 12890 | m_lastAssertionInfo = info; |
| 12891 | |
| 12892 | AssertionResultData data( ResultWas::ThrewException, LazyExpression( false ) ); |
| 12893 | data.message = "Exception translation was disabled by CATCH_CONFIG_FAST_COMPILE"; |
| 12894 | AssertionResult assertionResult{ info, data }; |
| 12895 | assertionEnded( assertionResult ); |
| 12896 | } |
| 12897 | void RunContext::handleNonExpr( |
| 12898 | AssertionInfo const &info, |
| 12899 | ResultWas::OfType resultType, |
no test coverage detected