Lines Matching refs:m_totals
85 m_reporter->testRunEnded(TestRunStats(m_runInfo, m_totals, aborting())); in ~RunContext()
97 Totals prevTotals = m_totals; in runTest()
118 Totals deltaTotals = m_totals.delta(prevTotals); in runTest()
124 m_totals.testCases += deltaTotals.testCases; in runTest()
147 m_totals.assertions.passed++; in assertionEnded()
152 m_totals.assertions.failedButOk++; in assertionEnded()
154 m_totals.assertions.failed++; in assertionEnded()
162 static_cast<void>(m_reporter->assertionEnded(AssertionStats(result, m_messages, m_totals))); in assertionEnded()
186 assertions = m_totals.assertions; in sectionStarted()
205 m_totals.assertions.failed++; in testForMissingAssertions()
211 Counts assertions = m_totals.assertions - endInfo.prevAssertions; in sectionEnded()
299 m_totals.testCases.failed++; in handleFatalErrorCondition()
300 testGroupEnded(std::string(), m_totals, 1, 1); in handleFatalErrorCondition()
301 m_reporter->testRunEnded(TestRunStats(m_runInfo, m_totals, false)); in handleFatalErrorCondition()
310 ++m_totals.assertions.passed; in assertionPassed()
316 return m_totals.assertions.failed >= static_cast<std::size_t>(m_config->abortAfter()); in aborting()
323 Counts prevAssertions = m_totals.assertions; in runCurrentTest()
358 Counts assertions = m_totals.assertions - prevAssertions; in runCurrentTest()