/external/catch2/include/internal/ |
D | catch_interfaces_reporter.h | 92 struct SectionStats { struct 93 SectionStats( SectionInfo const& _sectionInfo, 97 SectionStats( SectionStats const& ) = default; 98 SectionStats( SectionStats && ) = default; 99 SectionStats& operator = ( SectionStats const& ) = default; argument 100 SectionStats& operator = ( SectionStats && ) = default; argument 101 virtual ~SectionStats(); 199 virtual void sectionEnded( SectionStats const& sectionStats ) = 0;
|
D | catch_interfaces_reporter.cpp | 55 SectionStats::SectionStats( SectionInfo const& _sectionInfo, in SectionStats() function in Catch::SectionStats 65 SectionStats::~SectionStats() = default;
|
D | catch_run_context.cpp | 219 …m_reporter->sectionEnded(SectionStats(endInfo.sectionInfo, assertions, endInfo.durationInSeconds, … in sectionEnded() 286 SectionStats testCaseSectionStats(testCaseSection, assertions, 0, false); in handleFatalErrorCondition() 366 SectionStats testCaseSectionStats(testCaseSection, assertions, duration, missingAssertions); in runCurrentTest()
|
/external/catch2/include/reporters/ |
D | catch_reporter_bases.hpp | 66 void sectionEnded(SectionStats const& /* _sectionStats */) override { in sectionEnded() 109 explicit SectionNode(SectionStats const& _stats) : stats(_stats) {} in SectionNode() 119 SectionStats stats; 170 SectionStats incompleteStats( sectionInfo, Counts(), 0, false ); in sectionStarting() 208 void sectionEnded(SectionStats const& sectionStats) override { in sectionEnded()
|
D | catch_reporter_compact.h | 33 void sectionEnded(SectionStats const& _sectionStats) override;
|
D | catch_reporter_xml.h | 45 void sectionEnded(SectionStats const& sectionStats) override;
|
D | catch_reporter_listening.h | 45 void sectionEnded( SectionStats const& sectionStats ) override;
|
D | catch_reporter_console.h | 40 void sectionEnded(SectionStats const& _sectionStats) override;
|
D | catch_reporter_listening.cpp | 102 void ListeningReporter::sectionEnded( SectionStats const& sectionStats ) { in sectionEnded()
|
D | catch_reporter_xml.cpp | 170 void XmlReporter::sectionEnded( SectionStats const& sectionStats ) { in sectionEnded()
|
D | catch_reporter_compact.cpp | 276 void CompactReporter::sectionEnded(SectionStats const& _sectionStats) { in sectionEnded()
|
D | catch_reporter_console.cpp | 380 void ConsoleReporter::sectionEnded(SectionStats const& _sectionStats) { in sectionEnded()
|
/external/catch2/examples/ |
D | 210-Evt-EventListeners.cpp | 201 void print( std::ostream& os, int const level, std::string const& title, Catch::SectionStats const&… in print() 352 virtual void sectionEnded( Catch::SectionStats const& sectionStats ) override { in sectionEnded()
|
/external/bcc/tests/cc/ |
D | catch.hpp | 5132 struct SectionStats { struct 5133 SectionStats( SectionInfo const& _sectionInfo, in SectionStats() argument 5142 virtual ~SectionStats(); 5144 SectionStats( SectionStats const& ) = default; 5145 SectionStats( SectionStats && ) = default; 5146 SectionStats& operator = ( SectionStats const& ) = default; 5147 SectionStats& operator = ( SectionStats && ) = default; 5259 virtual void sectionEnded( SectionStats const& sectionStats ) = 0; 5995 …m_reporter->sectionEnded( SectionStats( endInfo.sectionInfo, assertions, endInfo.durationInSeconds… in sectionEnded() 6041 SectionStats testCaseSectionStats( testCaseSection, assertions, 0, false ); in handleFatalErrorCondition() [all …]
|
/external/catch2/docs/ |
D | event-listeners.md | 60 virtual void sectionEnded( SectionStats const& sectionStats );
|
/external/catch2/single_include/catch2/ |
D | catch.hpp | 4930 struct SectionStats { struct 4931 SectionStats( SectionInfo const& _sectionInfo, 4935 SectionStats( SectionStats const& ) = default; 4936 SectionStats( SectionStats && ) = default; 4937 SectionStats& operator = ( SectionStats const& ) = default; 4938 SectionStats& operator = ( SectionStats && ) = default; 4939 virtual ~SectionStats(); 5037 virtual void sectionEnded( SectionStats const& sectionStats ) = 0; 5123 void sectionEnded(SectionStats const& /* _sectionStats */) override { in sectionEnded() 5166 explicit SectionNode(SectionStats const& _stats) : stats(_stats) {} in SectionNode() [all …]
|