Lines Matching refs:m_totals
5878 m_reporter->testRunEnded( TestRunStats( m_runInfo, m_totals, aborting() ) ); in ~RunContext()
5889 Totals prevTotals = m_totals; in runTest()
5912 Totals deltaTotals = m_totals.delta( prevTotals ); in runTest()
5918 m_totals.testCases += deltaTotals.testCases; in runTest()
5939 m_totals.assertions.passed++; in assertionEnded()
5942 m_totals.assertions.failed++; in assertionEnded()
5945 if( m_reporter->assertionEnded( AssertionStats( result, m_messages, m_totals ) ) ) in assertionEnded()
5970 assertions = m_totals.assertions; in sectionStarted()
5981 m_totals.assertions.failed++; in testForMissingAssertions()
5987 Counts assertions = m_totals.assertions - endInfo.prevAssertions; in sectionEnded()
6053 m_totals.testCases.failed++; in handleFatalErrorCondition()
6054 testGroupEnded( "", m_totals, 1, 1 ); in handleFatalErrorCondition()
6055 m_reporter->testRunEnded( TestRunStats( m_runInfo, m_totals, false ) ); in handleFatalErrorCondition()
6061 return m_totals.assertions.failed == static_cast<std::size_t>( m_config->abortAfter() ); in aborting()
6070 Counts prevAssertions = m_totals.assertions; in runCurrentTest()
6099 Counts assertions = m_totals.assertions - prevAssertions; in runCurrentTest()
6104 m_totals.assertions.failed -= assertions.failedButOk; in runCurrentTest()
6105 m_totals.assertions.failedButOk += assertions.failedButOk; in runCurrentTest()
6146 Totals m_totals; member in Catch::RunContext