/external/catch2/include/internal/ |
D | catch_interfaces_reporter.h | 146 struct TestRunStats { struct 147 TestRunStats( TestRunInfo const& _runInfo, 151 TestRunStats( TestRunStats const& ) = default; 152 TestRunStats( TestRunStats && ) = default; 153 TestRunStats& operator = ( TestRunStats const& ) = default; argument 154 TestRunStats& operator = ( TestRunStats && ) = default; argument 155 virtual ~TestRunStats(); 202 virtual void testRunEnded( TestRunStats const& testRunStats ) = 0;
|
D | catch_interfaces_reporter.cpp | 98 TestRunStats::TestRunStats( TestRunInfo const& _runInfo, in TestRunStats() function in Catch::TestRunStats 106 TestRunStats::~TestRunStats() = default;
|
D | catch_run_context.cpp | 85 m_reporter->testRunEnded(TestRunStats(m_runInfo, m_totals, aborting())); in ~RunContext() 301 m_reporter->testRunEnded(TestRunStats(m_runInfo, m_totals, false)); in handleFatalErrorCondition()
|
/external/catch2/include/reporters/ |
D | catch_reporter_bases.hpp | 75 void testRunEnded(TestRunStats const& /* _testRunStats */) override { in testRunEnded() 144 using TestRunNode = Node<TestRunStats, TestGroupNode>; 230 void testRunEnded(TestRunStats const& testRunStats) override { in testRunEnded()
|
D | catch_reporter_compact.h | 35 void testRunEnded(TestRunStats const& _testRunStats) override;
|
D | catch_reporter_xml.h | 51 void testRunEnded(TestRunStats const& testRunStats) override;
|
D | catch_reporter_listening.h | 48 void testRunEnded( TestRunStats const& testRunStats ) override;
|
D | catch_reporter_console.h | 48 void testRunEnded(TestRunStats const& _testRunStats) override;
|
D | catch_reporter_listening.cpp | 123 void ListeningReporter::testRunEnded( TestRunStats const& testRunStats ) { in testRunEnded()
|
D | catch_reporter_tap.hpp | 53 void testRunEnded( TestRunStats const& _testRunStats ) override { in testRunEnded()
|
D | catch_reporter_xml.cpp | 211 void XmlReporter::testRunEnded( TestRunStats const& testRunStats ) { in testRunEnded()
|
D | catch_reporter_compact.cpp | 282 void CompactReporter::testRunEnded( TestRunStats const& _testRunStats ) { in testRunEnded()
|
D | catch_reporter_console.cpp | 438 void ConsoleReporter::testRunEnded(TestRunStats const& _testRunStats) { in testRunEnded()
|
/external/catch2/examples/ |
D | 210-Evt-EventListeners.cpp | 115 void print( std::ostream& os, int const level, std::string const& title, Catch::TestRunStats const&… in print() 316 virtual void testRunEnded( Catch::TestRunStats const& testRunStats ) override { in testRunEnded()
|
/external/catch2/single_include/catch2/ |
D | catch_reporter_tap.hpp | 53 void testRunEnded( TestRunStats const& _testRunStats ) override { in testRunEnded()
|
D | catch.hpp | 4984 struct TestRunStats { struct 4985 TestRunStats( TestRunInfo const& _runInfo, 4989 TestRunStats( TestRunStats const& ) = default; 4990 TestRunStats( TestRunStats && ) = default; 4991 TestRunStats& operator = ( TestRunStats const& ) = default; 4992 TestRunStats& operator = ( TestRunStats && ) = default; 4993 virtual ~TestRunStats(); 5040 virtual void testRunEnded( TestRunStats const& testRunStats ) = 0; 5132 void testRunEnded(TestRunStats const& /* _testRunStats */) override { in testRunEnded() 5200 using TestRunNode = Node<TestRunStats, TestGroupNode>; [all …]
|
/external/bcc/tests/cc/ |
D | catch.hpp | 5210 struct TestRunStats { struct 5211 TestRunStats( TestRunInfo const& _runInfo, in TestRunStats() argument 5218 virtual ~TestRunStats(); 5221 TestRunStats( TestRunStats const& _other ) in TestRunStats() argument 5227 TestRunStats( TestRunStats const& ) = default; 5228 TestRunStats( TestRunStats && ) = default; 5229 TestRunStats& operator = ( TestRunStats const& ) = default; 5230 TestRunStats& operator = ( TestRunStats && ) = default; 5262 virtual void testRunEnded( TestRunStats const& testRunStats ) = 0; 5878 m_reporter->testRunEnded( TestRunStats( m_runInfo, m_totals, aborting() ) ); in ~RunContext() [all …]
|
/external/catch2/docs/ |
D | event-listeners.md | 52 virtual void testRunEnded( TestRunStats const& testRunStats );
|