Home
last modified time | relevance | path

Searched refs:AssertionStats (Results 1 – 25 of 26) sorted by relevance

12

/external/catch2/include/internal/
Dcatch_interfaces_reporter.h76 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;
Dcatch_interfaces_reporter.cpp33 AssertionStats::AssertionStats( AssertionResult const& _assertionResult, in AssertionStats() function in Catch::AssertionStats
53 AssertionStats::~AssertionStats() = default;
Dcatch_assertionhandler.h24 friend struct AssertionStats;
/external/catch2/include/reporters/
Dcatch_reporter_junit.h32 bool assertionEnded(AssertionStats const& assertionStats) override;
49 void writeAssertion(AssertionStats const& stats);
Dcatch_reporter_bases.hpp121 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;
Dcatch_reporter_tap.hpp42 bool assertionEnded( AssertionStats const& _assertionStats ) override { in assertionEnded()
65 … AssertionPrinter( std::ostream& _stream, AssertionStats const& _stats, std::size_t _counter ) in AssertionPrinter()
Dcatch_reporter_compact.h31 bool assertionEnded(AssertionStats const& _assertionStats) override;
Dcatch_reporter_bases.cpp54 bool TestEventListenerBase::assertionEnded(AssertionStats const &) { in assertionEnded()
Dcatch_reporter_automake.hpp32 bool assertionEnded( AssertionStats const& /*_assertionStats*/ ) override { return true; } in assertionEnded()
Dcatch_reporter_xml.h43 bool assertionEnded(AssertionStats const& assertionStats) override;
Dcatch_reporter_compact.cpp79 AssertionPrinter(std::ostream& _stream, AssertionStats const& _stats, bool _printInfoMessages) in AssertionPrinter()
257 bool CompactReporter::assertionEnded( AssertionStats const& _assertionStats ) { in assertionEnded()
Dcatch_reporter_junit.cpp100 bool JunitReporter::assertionEnded( AssertionStats const& assertionStats ) { in assertionEnded()
206 void JunitReporter::writeAssertion( AssertionStats const& stats ) { in writeAssertion()
Dcatch_reporter_listening.h44 bool assertionEnded( AssertionStats const& assertionStats ) override;
Dcatch_reporter_console.h37 bool assertionEnded(AssertionStats const& _assertionStats) override;
Dcatch_reporter_console.cpp37 …ConsoleAssertionPrinter(std::ostream& _stream, AssertionStats const& _stats, bool _printInfoMessag… in ConsoleAssertionPrinter()
160 AssertionStats const& stats;
359 bool ConsoleReporter::assertionEnded(AssertionStats const& _assertionStats) { in assertionEnded()
Dcatch_reporter_listening.cpp95 bool ListeningReporter::assertionEnded( AssertionStats const& assertionStats ) { in assertionEnded()
Dcatch_reporter_teamcity.hpp68 bool assertionEnded( AssertionStats const& assertionStats ) override { in assertionEnded()
Dcatch_reporter_xml.cpp95 bool XmlReporter::assertionEnded( AssertionStats const& assertionStats ) { in assertionEnded()
/external/catch2/single_include/catch2/
Dcatch_reporter_tap.hpp42 bool assertionEnded( AssertionStats const& _assertionStats ) override { in assertionEnded()
65 … AssertionPrinter( std::ostream& _stream, AssertionStats const& _stats, std::size_t _counter ) in AssertionPrinter()
Dcatch_reporter_automake.hpp32 bool assertionEnded( AssertionStats const& /*_assertionStats*/ ) override { return true; } in assertionEnded()
Dcatch_reporter_teamcity.hpp68 bool assertionEnded( AssertionStats const& assertionStats ) override { in assertionEnded()
Dcatch.hpp2153 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/
D210-Evt-EventListeners.cpp286 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/
Dcatch.hpp5100 struct AssertionStats { struct
5101 AssertionStats( AssertionResult const& _assertionResult, in AssertionStats() function
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/
Devent-listeners.md64 virtual bool assertionEnded( AssertionStats const& assertionStats );

12