| 6740 | } |
| 6741 | |
| 6742 | void RunContext::handleIncomplete( |
| 6743 | AssertionInfo const& info |
| 6744 | ) { |
| 6745 | using namespace std::string_literals; |
| 6746 | Detail::g_lastKnownLineInfo = info.lineInfo; |
| 6747 | |
| 6748 | AssertionResultData data( ResultWas::ThrewException, LazyExpression( false ) ); |
| 6749 | data.message = "Exception translation was disabled by CATCH_CONFIG_FAST_COMPILE"s; |
| 6750 | AssertionResult assertionResult{ info, CATCH_MOVE( data ) }; |
| 6751 | assertionEnded( CATCH_MOVE(assertionResult) ); |
| 6752 | } |
| 6753 | |
| 6754 | void RunContext::handleNonExpr( |
| 6755 | AssertionInfo const &info, |
no test coverage detected