| 10469 | assertionEnded( assertionResult ); |
| 10470 | } |
| 10471 | void RunContext::handleNonExpr( |
| 10472 | AssertionInfo const &info, |
| 10473 | ResultWas::OfType resultType, |
| 10474 | AssertionReaction &reaction |
| 10475 | ) { |
| 10476 | m_lastAssertionInfo = info; |
| 10477 | |
| 10478 | AssertionResultData data( resultType, LazyExpression( false ) ); |
| 10479 | AssertionResult assertionResult{ info, data }; |
| 10480 | assertionEnded( assertionResult ); |
| 10481 | |
| 10482 | if( !assertionResult.isOk() ) |
| 10483 | populateReaction( reaction ); |
| 10484 | } |
| 10485 | |
| 10486 | IResultCapture& getResultCapture() { |
| 10487 | if (auto* capture = getCurrentContext().getResultCapture()) |
no test coverage detected