Home
last modified time | relevance | path

Searched refs:SectionNode (Results 1 – 5 of 5) sorted by relevance

/external/catch2/include/reporters/
Dcatch_reporter_bases.hpp108 struct SectionNode { struct
109 explicit SectionNode(SectionStats const& _stats) : stats(_stats) {} in SectionNode() function
110 virtual ~SectionNode() = default;
112 bool operator == (SectionNode const& other) const { in operator ==() argument
115 bool operator == (std::shared_ptr<SectionNode> const& other) const { in operator ==() argument
120 using ChildSections = std::vector<std::shared_ptr<SectionNode>>; argument
131 bool operator() (std::shared_ptr<SectionNode> const& node) const { in operator ()()
142 using TestCaseNode = Node<TestCaseStats, SectionNode>;
171 std::shared_ptr<SectionNode> node; in sectionStarting()
174 m_rootSection = std::make_shared<SectionNode>( incompleteStats ); in sectionStarting()
[all …]
Dcatch_reporter_junit.h46 SectionNode const& sectionNode);
48 void writeAssertions(SectionNode const& sectionNode);
Dcatch_reporter_junit.cpp150 SectionNode const& rootSection = *testCaseNode.children.front(); in writeTestCase()
168 SectionNode const& sectionNode ) { in writeSection()
201 void JunitReporter::writeAssertions( SectionNode const& sectionNode ) { in writeAssertions()
/external/bcc/tests/cc/
Dcatch.hpp8601 struct SectionNode : SharedImpl<> { struct
8602 explicit SectionNode( SectionStats const& _stats ) : stats( _stats ) {} in SectionNode() argument
8603 virtual ~SectionNode();
8605 bool operator == ( SectionNode const& other ) const { in operator ==() argument
8608 bool operator == ( Ptr<SectionNode> const& other ) const { in operator ==() argument
8613 typedef std::vector<Ptr<SectionNode> > ChildSections; argument
8624 bool operator() ( Ptr<SectionNode> const& node ) const { in operator ()()
8632 typedef Node<TestCaseStats, SectionNode> TestCaseNode;
8655 Ptr<SectionNode> node; in sectionStarting()
8658 m_rootSection = new SectionNode( incompleteStats ); in sectionStarting()
[all …]
/external/catch2/single_include/catch2/
Dcatch.hpp5165 struct SectionNode { struct
5166 explicit SectionNode(SectionStats const& _stats) : stats(_stats) {} in SectionNode() function
5167 virtual ~SectionNode() = default;
5169 bool operator == (SectionNode const& other) const { in operator ==() argument
5172 bool operator == (std::shared_ptr<SectionNode> const& other) const { in operator ==() argument
5177 using ChildSections = std::vector<std::shared_ptr<SectionNode>>; argument
5188 bool operator() (std::shared_ptr<SectionNode> const& node) const { in operator ()()
5198 using TestCaseNode = Node<TestCaseStats, SectionNode>;
5227 std::shared_ptr<SectionNode> node; in sectionStarting()
5230 m_rootSection = std::make_shared<SectionNode>( incompleteStats ); in sectionStarting()
[all …]