| 12500 | } |
| 12501 | |
| 12502 | void RunContext::handleIncomplete( |
| 12503 | AssertionInfo const& info |
| 12504 | ) { |
| 12505 | m_lastAssertionInfo = info; |
| 12506 | |
| 12507 | AssertionResultData data( ResultWas::ThrewException, LazyExpression( false ) ); |
| 12508 | data.message = "Exception translation was disabled by CATCH_CONFIG_FAST_COMPILE"; |
| 12509 | AssertionResult assertionResult{ info, data }; |
| 12510 | assertionEnded( assertionResult ); |
| 12511 | } |
| 12512 | void RunContext::handleNonExpr( |
| 12513 | AssertionInfo const &info, |
| 12514 | ResultWas::OfType resultType, |
no test coverage detected