| 10298 | } |
| 10299 | |
| 10300 | void RunContext::assertionPassed() { |
| 10301 | m_lastAssertionPassed = true; |
| 10302 | ++m_totals.assertions.passed; |
| 10303 | resetAssertionInfo(); |
| 10304 | } |
| 10305 | |
| 10306 | bool RunContext::aborting() const { |
| 10307 | return m_totals.assertions.failed >= static_cast<std::size_t>(m_config->abortAfter()); |
nothing calls this directly
no outgoing calls
no test coverage detected