Lines Matching refs:testCaseStats

5260         virtual void testCaseEnded( TestCaseStats const& testCaseStats ) = 0;
7597 virtual void testCaseEnded( TestCaseStats const& testCaseStats );
7659 void LegacyReporterAdapter::testCaseEnded( TestCaseStats const& testCaseStats ) { in testCaseEnded() argument
7661 ( testCaseStats.testInfo, in testCaseEnded()
7662 testCaseStats.totals, in testCaseEnded()
7663 testCaseStats.stdOut, in testCaseEnded()
7664 testCaseStats.stdErr ); in testCaseEnded()
8467 virtual void testCaseEnded( TestCaseStats const& testCaseStats ) CATCH_OVERRIDE { in testCaseEnded() argument
8471 (*it)->testCaseEnded( testCaseStats ); in testCaseEnded()
8692 virtual void testCaseEnded( TestCaseStats const& testCaseStats ) CATCH_OVERRIDE { in testCaseEnded()
8693 Ptr<TestCaseNode> node = new TestCaseNode( testCaseStats ); in testCaseEnded()
8700 m_deepestSection->stdOut = testCaseStats.stdOut; in testCaseEnded()
8701 m_deepestSection->stdErr = testCaseStats.stdErr; in testCaseEnded()
9223 virtual void testCaseEnded( TestCaseStats const& testCaseStats ) CATCH_OVERRIDE { in testCaseEnded() argument
9224 StreamingReporterBase::testCaseEnded( testCaseStats ); in testCaseEnded()
9226 e.writeAttribute( "success", testCaseStats.totals.assertions.allOk() ); in testCaseEnded()
9306 virtual void testCaseEnded( TestCaseStats const& testCaseStats ) CATCH_OVERRIDE { in testCaseEnded() argument
9307 stdOutForSuite << testCaseStats.stdOut; in testCaseEnded()
9308 stdErrForSuite << testCaseStats.stdErr; in testCaseEnded()
9309 CumulativeReporterBase::testCaseEnded( testCaseStats ); in testCaseEnded()