Home
last modified time | relevance | path

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

/external/catch2/include/reporters/
Dcatch_reporter_bases.hpp111 struct SectionNode { struct
112 explicit SectionNode(SectionStats const& _stats) : stats(_stats) {} in SectionNode() function
113 virtual ~SectionNode() = default;
115 bool operator == (SectionNode const& other) const { in operator ==() argument
118 bool operator == (std::shared_ptr<SectionNode> const& other) const { in operator ==() argument
123 using ChildSections = std::vector<std::shared_ptr<SectionNode>>; argument
134 bool operator() (std::shared_ptr<SectionNode> const& node) const { in operator ()()
145 using TestCaseNode = Node<TestCaseStats, SectionNode>;
174 std::shared_ptr<SectionNode> node; in sectionStarting()
177 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.cpp159 SectionNode const& rootSection = *testCaseNode.children.front(); in writeTestCase()
177 SectionNode const& sectionNode ) { in writeSection()
210 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.hpp5183 struct SectionNode { struct
5184 explicit SectionNode(SectionStats const& _stats) : stats(_stats) {} in SectionNode() argument
5185 virtual ~SectionNode() = default;
5187 bool operator == (SectionNode const& other) const { in operator ==() argument
5190 bool operator == (std::shared_ptr<SectionNode> const& other) const { in operator ==() argument
5195 using ChildSections = std::vector<std::shared_ptr<SectionNode>>; argument
5206 bool operator() (std::shared_ptr<SectionNode> const& node) const { in operator ()()
5216 using TestCaseNode = Node<TestCaseStats, SectionNode>;
5245 std::shared_ptr<SectionNode> node; in sectionStarting()
5248 m_rootSection = std::make_shared<SectionNode>( incompleteStats ); in sectionStarting()
[all …]