Searched refs:testCaseStats (Results 1 – 14 of 14) sorted by relevance
153 void testCaseEnded( TestCaseStats const& testCaseStats ) override { in testCaseEnded()154 StreamingReporterBase::testCaseEnded( testCaseStats ); in testCaseEnded()155 if( !testCaseStats.stdOut.empty() ) in testCaseEnded()157 << escape( testCaseStats.testInfo.name ) in testCaseEnded()158 << "' out='" << escape( testCaseStats.stdOut ) << "']\n"; in testCaseEnded()159 if( !testCaseStats.stdErr.empty() ) in testCaseEnded()161 << escape( testCaseStats.testInfo.name ) in testCaseEnded()162 << "' out='" << escape( testCaseStats.stdErr ) << "']\n"; in testCaseEnded()164 << escape( testCaseStats.testInfo.name ) << "' duration='" in testCaseEnded()
5038 virtual void testCaseEnded( TestCaseStats const& testCaseStats ) = 0;5270 void testCaseEnded(TestCaseStats const& testCaseStats) override { in testCaseEnded()5271 auto node = std::make_shared<TestCaseNode>(testCaseStats); in testCaseEnded()5278 m_deepestSection->stdOut = testCaseStats.stdOut; in testCaseEnded()5279 m_deepestSection->stdErr = testCaseStats.stdErr; in testCaseEnded()5673 void testCaseEnded(TestCaseStats const& testCaseStats) override;5734 void testCaseEnded(TestCaseStats const& testCaseStats) override;8901 void testCaseEnded( TestCaseStats const& testCaseStats ) override;14030 void JunitReporter::testCaseEnded( TestCaseStats const& testCaseStats ) { in testCaseEnded() argument14031 stdOutForSuite += testCaseStats.stdOut; in testCaseEnded()[all …]
185 void XmlReporter::testCaseEnded( TestCaseStats const& testCaseStats ) { in testCaseEnded() argument186 StreamingReporterBase::testCaseEnded( testCaseStats ); in testCaseEnded()188 e.writeAttribute( "success", testCaseStats.totals.assertions.allOk() ); in testCaseEnded()193 if( !testCaseStats.stdOut.empty() ) in testCaseEnded()194 m_xml.scopedElement( "StdOut" ).writeText( trim( testCaseStats.stdOut ), false ); in testCaseEnded()195 if( !testCaseStats.stdErr.empty() ) in testCaseEnded()196 m_xml.scopedElement( "StdErr" ).writeText( trim( testCaseStats.stdErr ), false ); in testCaseEnded()
109 void ListeningReporter::testCaseEnded( TestCaseStats const& testCaseStats ) { in testCaseEnded() argument111 listener->testCaseEnded( testCaseStats ); in testCaseEnded()113 m_reporter->testCaseEnded( testCaseStats ); in testCaseEnded()
106 void JunitReporter::testCaseEnded( TestCaseStats const& testCaseStats ) { in testCaseEnded() argument107 stdOutForSuite += testCaseStats.stdOut; in testCaseEnded()108 stdErrForSuite += testCaseStats.stdErr; in testCaseEnded()109 CumulativeReporterBase::testCaseEnded( testCaseStats ); in testCaseEnded()
214 void testCaseEnded(TestCaseStats const& testCaseStats) override { in testCaseEnded()215 auto node = std::make_shared<TestCaseNode>(testCaseStats); in testCaseEnded()222 m_deepestSection->stdOut = testCaseStats.stdOut; in testCaseEnded()223 m_deepestSection->stdErr = testCaseStats.stdErr; in testCaseEnded()
47 void testCaseEnded(TestCaseStats const& testCaseStats) override;
34 void testCaseEnded(TestCaseStats const& testCaseStats) override;
46 void testCaseEnded( TestCaseStats const& testCaseStats ) override;
36 virtual void testCaseEnded( Catch::TestCaseStats const& testCaseStats ) override {56 virtual void testCaseEnded( TestCaseStats const& testCaseStats );
340 virtual void testCaseEnded( Catch::TestCaseStats const& testCaseStats ) override { in testCaseEnded()342 print( std::cout, 1, "testCaseStats", testCaseStats ); in testCaseEnded()
200 virtual void testCaseEnded( TestCaseStats const& testCaseStats ) = 0;
5260 virtual void testCaseEnded( TestCaseStats const& testCaseStats ) = 0;7597 virtual void testCaseEnded( TestCaseStats const& testCaseStats );7659 void LegacyReporterAdapter::testCaseEnded( TestCaseStats const& testCaseStats ) { in testCaseEnded() argument7661 ( 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() argument8471 (*it)->testCaseEnded( testCaseStats ); in testCaseEnded()8692 virtual void testCaseEnded( TestCaseStats const& testCaseStats ) CATCH_OVERRIDE { in testCaseEnded()[all …]