| 8926 | } |
| 8927 | |
| 8928 | void RunContext::handleIncomplete( |
| 8929 | AssertionInfo const& info |
| 8930 | ) { |
| 8931 | m_lastAssertionInfo = info; |
| 8932 | |
| 8933 | AssertionResultData data( ResultWas::ThrewException, LazyExpression( false ) ); |
| 8934 | data.message = "Exception translation was disabled by CATCH_CONFIG_FAST_COMPILE"; |
| 8935 | AssertionResult assertionResult{ info, data }; |
| 8936 | assertionEnded( assertionResult ); |
| 8937 | } |
| 8938 | void RunContext::handleNonExpr( |
| 8939 | AssertionInfo const &info, |
| 8940 | ResultWas::OfType resultType, |
no test coverage detected