Home
last modified time | relevance | path

Searched refs:testCaseStats (Results 1 – 14 of 14) sorted by relevance

/external/catch2/single_include/catch2/
Dcatch_reporter_teamcity.hpp153 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()
Dcatch.hpp5038 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() argument
14031 stdOutForSuite += testCaseStats.stdOut; in testCaseEnded()
[all …]
/external/catch2/include/reporters/
Dcatch_reporter_teamcity.hpp153 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()
Dcatch_reporter_xml.cpp185 void XmlReporter::testCaseEnded( TestCaseStats const& testCaseStats ) { in testCaseEnded() argument
186 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()
Dcatch_reporter_listening.cpp109 void ListeningReporter::testCaseEnded( TestCaseStats const& testCaseStats ) { in testCaseEnded() argument
111 listener->testCaseEnded( testCaseStats ); in testCaseEnded()
113 m_reporter->testCaseEnded( testCaseStats ); in testCaseEnded()
Dcatch_reporter_junit.cpp106 void JunitReporter::testCaseEnded( TestCaseStats const& testCaseStats ) { in testCaseEnded() argument
107 stdOutForSuite += testCaseStats.stdOut; in testCaseEnded()
108 stdErrForSuite += testCaseStats.stdErr; in testCaseEnded()
109 CumulativeReporterBase::testCaseEnded( testCaseStats ); in testCaseEnded()
Dcatch_reporter_bases.hpp214 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()
Dcatch_reporter_xml.h47 void testCaseEnded(TestCaseStats const& testCaseStats) override;
Dcatch_reporter_junit.h34 void testCaseEnded(TestCaseStats const& testCaseStats) override;
Dcatch_reporter_listening.h46 void testCaseEnded( TestCaseStats const& testCaseStats ) override;
/external/catch2/docs/
Devent-listeners.md36 virtual void testCaseEnded( Catch::TestCaseStats const& testCaseStats ) override {
56 virtual void testCaseEnded( TestCaseStats const& testCaseStats );
/external/catch2/examples/
D210-Evt-EventListeners.cpp340 virtual void testCaseEnded( Catch::TestCaseStats const& testCaseStats ) override { in testCaseEnded()
342 print( std::cout, 1, "testCaseStats", testCaseStats ); in testCaseEnded()
/external/catch2/include/internal/
Dcatch_interfaces_reporter.h200 virtual void testCaseEnded( TestCaseStats const& testCaseStats ) = 0;
/external/bcc/tests/cc/
Dcatch.hpp5260 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()
[all …]