Lines Matching refs:m_totals
8083 Totals m_totals; member in Catch::RunContext
12496 m_reporter->testRunEnded(TestRunStats(m_runInfo, m_totals, aborting())); in ~RunContext()
12508 Totals prevTotals = m_totals; in runTest()
12528 Totals deltaTotals = m_totals.delta(prevTotals); in runTest()
12534 m_totals.testCases += deltaTotals.testCases; in runTest()
12557 m_totals.assertions.passed++; in assertionEnded()
12562 m_totals.assertions.failedButOk++; in assertionEnded()
12564 m_totals.assertions.failed++; in assertionEnded()
12572 static_cast<void>(m_reporter->assertionEnded(AssertionStats(result, m_messages, m_totals))); in assertionEnded()
12596 assertions = m_totals.assertions; in sectionStarted()
12615 m_totals.assertions.failed++; in testForMissingAssertions()
12621 Counts assertions = m_totals.assertions - endInfo.prevAssertions; in sectionEnded()
12718 m_totals.testCases.failed++; in handleFatalErrorCondition()
12719 testGroupEnded(std::string(), m_totals, 1, 1); in handleFatalErrorCondition()
12720 m_reporter->testRunEnded(TestRunStats(m_runInfo, m_totals, false)); in handleFatalErrorCondition()
12729 ++m_totals.assertions.passed; in assertionPassed()
12735 return m_totals.assertions.failed >= static_cast<std::size_t>(m_config->abortAfter()); in aborting()
12742 Counts prevAssertions = m_totals.assertions; in runCurrentTest()
12777 Counts assertions = m_totals.assertions - prevAssertions; in runCurrentTest()