/external/catch2/include/internal/ |
D | catch_interfaces_reporter.h | 76 struct AssertionStats { struct 77 AssertionStats( AssertionResult const& _assertionResult, 81 AssertionStats( AssertionStats const& ) = default; 82 AssertionStats( AssertionStats && ) = default; 83 AssertionStats& operator = ( AssertionStats const& ) = delete; argument 84 AssertionStats& operator = ( AssertionStats && ) = delete; argument 85 virtual ~AssertionStats(); 194 virtual bool assertionEnded( AssertionStats const& assertionStats ) = 0;
|
D | catch_interfaces_reporter.cpp | 33 AssertionStats::AssertionStats( AssertionResult const& _assertionResult, in AssertionStats() function in Catch::AssertionStats 53 AssertionStats::~AssertionStats() = default;
|
D | catch_assertionhandler.h | 24 friend struct AssertionStats;
|
/external/catch2/include/reporters/ |
D | catch_reporter_junit.h | 32 bool assertionEnded(AssertionStats const& assertionStats) override; 49 void writeAssertion(AssertionStats const& stats);
|
D | catch_reporter_bases.hpp | 121 using Assertions = std::vector<AssertionStats>; 196 bool assertionEnded(AssertionStats const& assertionStats) override { in assertionEnded() 242 std::vector<AssertionStats> m_assertions; 272 bool assertionEnded(AssertionStats const&) override;
|
D | catch_reporter_tap.hpp | 42 bool assertionEnded( AssertionStats const& _assertionStats ) override { in assertionEnded() 65 … AssertionPrinter( std::ostream& _stream, AssertionStats const& _stats, std::size_t _counter ) in AssertionPrinter()
|
D | catch_reporter_compact.h | 31 bool assertionEnded(AssertionStats const& _assertionStats) override;
|
D | catch_reporter_bases.cpp | 54 bool TestEventListenerBase::assertionEnded(AssertionStats const &) { in assertionEnded()
|
D | catch_reporter_automake.hpp | 32 bool assertionEnded( AssertionStats const& /*_assertionStats*/ ) override { return true; } in assertionEnded()
|
D | catch_reporter_xml.h | 43 bool assertionEnded(AssertionStats const& assertionStats) override;
|
D | catch_reporter_compact.cpp | 79 AssertionPrinter(std::ostream& _stream, AssertionStats const& _stats, bool _printInfoMessages) in AssertionPrinter() 257 bool CompactReporter::assertionEnded( AssertionStats const& _assertionStats ) { in assertionEnded()
|
D | catch_reporter_junit.cpp | 100 bool JunitReporter::assertionEnded( AssertionStats const& assertionStats ) { in assertionEnded() 206 void JunitReporter::writeAssertion( AssertionStats const& stats ) { in writeAssertion()
|
D | catch_reporter_listening.h | 44 bool assertionEnded( AssertionStats const& assertionStats ) override;
|
D | catch_reporter_console.h | 37 bool assertionEnded(AssertionStats const& _assertionStats) override;
|
D | catch_reporter_console.cpp | 37 …ConsoleAssertionPrinter(std::ostream& _stream, AssertionStats const& _stats, bool _printInfoMessag… in ConsoleAssertionPrinter() 160 AssertionStats const& stats; 359 bool ConsoleReporter::assertionEnded(AssertionStats const& _assertionStats) { in assertionEnded()
|
D | catch_reporter_listening.cpp | 95 bool ListeningReporter::assertionEnded( AssertionStats const& assertionStats ) { in assertionEnded()
|
D | catch_reporter_teamcity.hpp | 68 bool assertionEnded( AssertionStats const& assertionStats ) override { in assertionEnded()
|
D | catch_reporter_xml.cpp | 95 bool XmlReporter::assertionEnded( AssertionStats const& assertionStats ) { in assertionEnded()
|
/external/catch2/single_include/catch2/ |
D | catch_reporter_tap.hpp | 42 bool assertionEnded( AssertionStats const& _assertionStats ) override { in assertionEnded() 65 … AssertionPrinter( std::ostream& _stream, AssertionStats const& _stats, std::size_t _counter ) in AssertionPrinter()
|
D | catch_reporter_automake.hpp | 32 bool assertionEnded( AssertionStats const& /*_assertionStats*/ ) override { return true; } in assertionEnded()
|
D | catch_reporter_teamcity.hpp | 68 bool assertionEnded( AssertionStats const& assertionStats ) override { in assertionEnded()
|
D | catch.hpp | 2153 friend struct AssertionStats; 4914 struct AssertionStats { struct 4915 AssertionStats( AssertionResult const& _assertionResult, 4919 AssertionStats( AssertionStats const& ) = default; 4920 AssertionStats( AssertionStats && ) = default; 4921 AssertionStats& operator = ( AssertionStats const& ) = delete; 4922 AssertionStats& operator = ( AssertionStats && ) = delete; 4923 virtual ~AssertionStats(); 5032 virtual bool assertionEnded( AssertionStats const& assertionStats ) = 0; 5178 using Assertions = std::vector<AssertionStats>; [all …]
|
/external/catch2/examples/ |
D | 210-Evt-EventListeners.cpp | 286 void print( std::ostream& os, int const level, std::string const& title, Catch::AssertionStats cons… in print() 363 virtual bool assertionEnded( Catch::AssertionStats const& assertionStats ) override { in assertionEnded()
|
/external/bcc/tests/cc/ |
D | catch.hpp | 5100 struct AssertionStats { struct 5101 AssertionStats( AssertionResult const& _assertionResult, in AssertionStats() argument 5118 virtual ~AssertionStats(); 5121 AssertionStats( AssertionStats const& ) = default; 5122 AssertionStats( AssertionStats && ) = default; 5123 AssertionStats& operator = ( AssertionStats const& ) = default; 5124 AssertionStats& operator = ( AssertionStats && ) = default; 5257 virtual bool assertionEnded( AssertionStats const& assertionStats ) = 0; 5945 if( m_reporter->assertionEnded( AssertionStats( result, m_messages, m_totals ) ) ) in assertionEnded() 7595 virtual bool assertionEnded( AssertionStats const& assertionStats ); [all …]
|
/external/catch2/docs/ |
D | event-listeners.md | 64 virtual bool assertionEnded( AssertionStats const& assertionStats );
|