• Home
  • Raw
  • Download

Lines Matching refs:assertions

120             deltaTotals.assertions.failed++;  in runTest()
147 m_totals.assertions.passed++; in assertionEnded()
152 m_totals.assertions.failedButOk++; in assertionEnded()
154 m_totals.assertions.failed++; in assertionEnded()
176 bool RunContext::sectionStarted(SectionInfo const & sectionInfo, Counts & assertions) { in sectionStarted() argument
186 assertions = m_totals.assertions; in sectionStarted()
198 bool RunContext::testForMissingAssertions(Counts& assertions) { in testForMissingAssertions() argument
199 if (assertions.total() != 0) in testForMissingAssertions()
205 m_totals.assertions.failed++; in testForMissingAssertions()
206 assertions.failed++; in testForMissingAssertions()
211 Counts assertions = m_totals.assertions - endInfo.prevAssertions; in sectionEnded() local
212 bool missingAssertions = testForMissingAssertions(assertions); in sectionEnded()
219 …m_reporter->sectionEnded(SectionStats(endInfo.sectionInfo, assertions, endInfo.durationInSeconds, … in sectionEnded()
293 Counts assertions; in handleFatalErrorCondition() local
294 assertions.failed = 1; in handleFatalErrorCondition()
295 SectionStats testCaseSectionStats(testCaseSection, assertions, 0, false); in handleFatalErrorCondition()
302 deltaTotals.assertions.failed = 1; in handleFatalErrorCondition()
319 ++m_totals.assertions.passed; in assertionPassed()
325 return m_totals.assertions.failed >= static_cast<std::size_t>(m_config->abortAfter()); in aborting()
332 Counts prevAssertions = m_totals.assertions; in runCurrentTest()
367 Counts assertions = m_totals.assertions - prevAssertions; in runCurrentTest()
368 bool missingAssertions = testForMissingAssertions(assertions); in runCurrentTest()
375 SectionStats testCaseSectionStats(testCaseSection, assertions, duration, missingAssertions); in runCurrentTest()