| 12510 | assertionEnded( assertionResult ); |
| 12511 | } |
| 12512 | void RunContext::handleNonExpr( |
| 12513 | AssertionInfo const &info, |
| 12514 | ResultWas::OfType resultType, |
| 12515 | AssertionReaction &reaction |
| 12516 | ) { |
| 12517 | m_lastAssertionInfo = info; |
| 12518 | |
| 12519 | AssertionResultData data( resultType, LazyExpression( false ) ); |
| 12520 | AssertionResult assertionResult{ info, data }; |
| 12521 | assertionEnded( assertionResult ); |
| 12522 | |
| 12523 | if( !assertionResult.isOk() ) |
| 12524 | populateReaction( reaction ); |
| 12525 | } |
| 12526 | |
| 12527 | IResultCapture& getResultCapture() { |
| 12528 | if (auto* capture = getCurrentContext().getResultCapture()) |
no test coverage detected