/external/catch2/include/internal/ |
D | catch_interfaces_reporter.h | 109 struct TestCaseStats { struct 110 TestCaseStats( TestCaseInfo const& _testInfo, 116 TestCaseStats( TestCaseStats const& ) = default; 117 TestCaseStats( TestCaseStats && ) = default; 118 TestCaseStats& operator = ( TestCaseStats const& ) = default; argument 119 TestCaseStats& operator = ( TestCaseStats && ) = default; argument 120 virtual ~TestCaseStats(); 200 virtual void testCaseEnded( TestCaseStats const& testCaseStats ) = 0;
|
D | catch_interfaces_reporter.cpp | 68 TestCaseStats::TestCaseStats( TestCaseInfo const& _testInfo, in TestCaseStats() function in Catch::TestCaseStats 80 TestCaseStats::~TestCaseStats() = default;
|
D | catch_run_context.cpp | 125 m_reporter->testCaseEnded(TestCaseStats(testInfo, in runTest() 294 m_reporter->testCaseEnded(TestCaseStats(testInfo, in handleFatalErrorCondition()
|
/external/catch2/include/reporters/ |
D | catch_reporter_bases.hpp | 69 void testCaseEnded(TestCaseStats const& /* _testCaseStats */) override { in testCaseEnded() 142 using TestCaseNode = Node<TestCaseStats, SectionNode>; 214 void testCaseEnded(TestCaseStats const& testCaseStats) override { in testCaseEnded()
|
D | catch_reporter_automake.hpp | 34 void testCaseEnded( TestCaseStats const& _testCaseStats ) override { in testCaseEnded()
|
D | catch_reporter_xml.h | 47 void testCaseEnded(TestCaseStats const& testCaseStats) override;
|
D | catch_reporter_junit.cpp | 106 void JunitReporter::testCaseEnded( TestCaseStats const& testCaseStats ) { in testCaseEnded() 145 TestCaseStats const& stats = testCaseNode.value; in writeTestCase()
|
D | catch_reporter_junit.h | 34 void testCaseEnded(TestCaseStats const& testCaseStats) override;
|
D | catch_reporter_listening.h | 46 void testCaseEnded( TestCaseStats const& testCaseStats ) override;
|
D | catch_reporter_console.h | 46 void testCaseEnded(TestCaseStats const& _testCaseStats) override;
|
D | catch_reporter_listening.cpp | 109 void ListeningReporter::testCaseEnded( TestCaseStats const& testCaseStats ) { in testCaseEnded()
|
D | catch_reporter_teamcity.hpp | 153 void testCaseEnded( TestCaseStats const& testCaseStats ) override { in testCaseEnded()
|
D | catch_reporter_xml.cpp | 185 void XmlReporter::testCaseEnded( TestCaseStats const& testCaseStats ) { in testCaseEnded()
|
D | catch_reporter_console.cpp | 424 void ConsoleReporter::testCaseEnded(TestCaseStats const& _testCaseStats) { in testCaseEnded()
|
/external/catch2/docs/ |
D | event-listeners.md | 36 virtual void testCaseEnded( Catch::TestCaseStats const& testCaseStats ) override { 56 virtual void testCaseEnded( TestCaseStats const& testCaseStats );
|
/external/catch2/single_include/catch2/ |
D | catch_reporter_automake.hpp | 34 void testCaseEnded( TestCaseStats const& _testCaseStats ) override { in testCaseEnded()
|
D | catch_reporter_teamcity.hpp | 153 void testCaseEnded( TestCaseStats const& testCaseStats ) override { in testCaseEnded()
|
D | catch.hpp | 4947 struct TestCaseStats { struct 4948 TestCaseStats( TestCaseInfo const& _testInfo, 4954 TestCaseStats( TestCaseStats const& ) = default; 4955 TestCaseStats( TestCaseStats && ) = default; 4956 TestCaseStats& operator = ( TestCaseStats const& ) = default; 4957 TestCaseStats& operator = ( TestCaseStats && ) = default; 4958 virtual ~TestCaseStats(); 5038 virtual void testCaseEnded( TestCaseStats const& testCaseStats ) = 0; 5126 void testCaseEnded(TestCaseStats const& /* _testCaseStats */) override { in testCaseEnded() 5198 using TestCaseNode = Node<TestCaseStats, SectionNode>; [all …]
|
/external/catch2/examples/ |
D | 210-Evt-EventListeners.cpp | 173 void print( std::ostream& os, int const level, std::string const& title, Catch::TestCaseStats const… in print() 340 virtual void testCaseEnded( Catch::TestCaseStats const& testCaseStats ) override { in testCaseEnded()
|
/external/bcc/tests/cc/ |
D | catch.hpp | 5156 struct TestCaseStats { struct 5157 TestCaseStats( TestCaseInfo const& _testInfo, in TestCaseStats() function 5168 virtual ~TestCaseStats(); 5171 TestCaseStats( TestCaseStats const& ) = default; 5172 TestCaseStats( TestCaseStats && ) = default; 5173 TestCaseStats& operator = ( TestCaseStats const& ) = default; 5174 TestCaseStats& operator = ( TestCaseStats && ) = default; 5260 virtual void testCaseEnded( TestCaseStats const& testCaseStats ) = 0; 5919 m_reporter->testCaseEnded( TestCaseStats( testInfo, in runTest() 6048 m_reporter->testCaseEnded( TestCaseStats( testInfo, in handleFatalErrorCondition() [all …]
|