| 8870 | assertionEnded(assertionResult); |
| 8871 | } |
| 8872 | void RunContext::handleNonExpr(AssertionInfo const &info, ResultWas::OfType resultType, AssertionReaction &reaction) { |
| 8873 | m_lastAssertionInfo = info; |
| 8874 | |
| 8875 | AssertionResultData data(resultType, LazyExpression(false)); |
| 8876 | AssertionResult assertionResult{info, data}; |
| 8877 | assertionEnded(assertionResult); |
| 8878 | |
| 8879 | if (!assertionResult.isOk()) |
| 8880 | populateReaction(reaction); |
| 8881 | } |
| 8882 | |
| 8883 | IResultCapture &getResultCapture() { |
| 8884 | if (auto *capture = getCurrentContext().getResultCapture()) |
no test coverage detected