Lines Matching refs:testCaseStats

5618         virtual void testCaseEnded( TestCaseStats const& testCaseStats ) = 0;
5855 void testCaseEnded(TestCaseStats const& testCaseStats) override { in testCaseEnded()
5856 auto node = std::make_shared<TestCaseNode>(testCaseStats); in testCaseEnded()
5863 m_deepestSection->stdOut = testCaseStats.stdOut; in testCaseEnded()
5864 m_deepestSection->stdErr = testCaseStats.stdErr; in testCaseEnded()
6278 void testCaseEnded(TestCaseStats const& testCaseStats) override;
6339 void testCaseEnded(TestCaseStats const& testCaseStats) override;
10886 void testCaseEnded( TestCaseStats const& testCaseStats ) override;
16540 void JunitReporter::testCaseEnded( TestCaseStats const& testCaseStats ) { in testCaseEnded() argument
16541 stdOutForSuite += testCaseStats.stdOut; in testCaseEnded()
16542 stdErrForSuite += testCaseStats.stdErr; in testCaseEnded()
16543 CumulativeReporterBase::testCaseEnded( testCaseStats ); in testCaseEnded()
16843 void ListeningReporter::testCaseEnded( TestCaseStats const& testCaseStats ) { in testCaseEnded() argument
16845 listener->testCaseEnded( testCaseStats ); in testCaseEnded()
16847 m_reporter->testCaseEnded( testCaseStats ); in testCaseEnded()
17051 void XmlReporter::testCaseEnded( TestCaseStats const& testCaseStats ) { in testCaseEnded() argument
17052 StreamingReporterBase::testCaseEnded( testCaseStats ); in testCaseEnded()
17054 e.writeAttribute( "success", testCaseStats.totals.assertions.allOk() ); in testCaseEnded()
17059 if( !testCaseStats.stdOut.empty() ) in testCaseEnded()
17060 … m_xml.scopedElement( "StdOut" ).writeText( trim( testCaseStats.stdOut ), XmlFormatting::Newline ); in testCaseEnded()
17061 if( !testCaseStats.stdErr.empty() ) in testCaseEnded()
17062 … m_xml.scopedElement( "StdErr" ).writeText( trim( testCaseStats.stdErr ), XmlFormatting::Newline ); in testCaseEnded()