| 13120 | } |
| 13121 | |
| 13122 | void RunContext::handleIncomplete( |
| 13123 | AssertionInfo const& info |
| 13124 | ) { |
| 13125 | m_lastAssertionInfo = info; |
| 13126 | |
| 13127 | AssertionResultData data( ResultWas::ThrewException, LazyExpression( false ) ); |
| 13128 | data.message = "Exception translation was disabled by CATCH_CONFIG_FAST_COMPILE"; |
| 13129 | AssertionResult assertionResult{ info, data }; |
| 13130 | assertionEnded( assertionResult ); |
| 13131 | } |
| 13132 | void RunContext::handleNonExpr( |
| 13133 | AssertionInfo const &info, |
| 13134 | ResultWas::OfType resultType, |
no test coverage detected