| 10401 | } |
| 10402 | } |
| 10403 | void RunContext::reportExpr( |
| 10404 | AssertionInfo const &info, |
| 10405 | ResultWas::OfType resultType, |
| 10406 | ITransientExpression const *expr, |
| 10407 | bool negated ) { |
| 10408 | |
| 10409 | m_lastAssertionInfo = info; |
| 10410 | AssertionResultData data( resultType, LazyExpression( negated ) ); |
| 10411 | |
| 10412 | AssertionResult assertionResult{ info, data }; |
| 10413 | assertionResult.m_resultData.lazyExpression.m_transientExpression = expr; |
| 10414 | |
| 10415 | assertionEnded( assertionResult ); |
| 10416 | } |
| 10417 | |
| 10418 | void RunContext::handleMessage( |
| 10419 | AssertionInfo const& info, |
nothing calls this directly
no test coverage detected