| 12725 | } |
| 12726 | |
| 12727 | void RunContext::assertionPassed() { |
| 12728 | m_lastAssertionPassed = true; |
| 12729 | ++m_totals.assertions.passed; |
| 12730 | resetAssertionInfo(); |
| 12731 | m_messageScopes.clear(); |
| 12732 | } |
| 12733 | |
| 12734 | bool RunContext::aborting() const { |
| 12735 | return m_totals.assertions.failed >= static_cast<std::size_t>(m_config->abortAfter()); |
nothing calls this directly
no outgoing calls
no test coverage detected