| 10734 | assertionEnded( assertionResult ); |
| 10735 | } |
| 10736 | void RunContext::handleNonExpr( |
| 10737 | AssertionInfo const &info, |
| 10738 | ResultWas::OfType resultType, |
| 10739 | AssertionReaction &reaction |
| 10740 | ) { |
| 10741 | m_lastAssertionInfo = info; |
| 10742 | |
| 10743 | AssertionResultData data( resultType, LazyExpression( false ) ); |
| 10744 | AssertionResult assertionResult{ info, data }; |
| 10745 | assertionEnded( assertionResult ); |
| 10746 | |
| 10747 | if( !assertionResult.isOk() ) |
| 10748 | populateReaction( reaction ); |
| 10749 | } |
| 10750 | |
| 10751 | IResultCapture& getResultCapture() { |
| 10752 | if (auto* capture = getCurrentContext().getResultCapture()) |
no test coverage detected