Home | History | Annotate | Download | only in common

Lines Matching refs:TestNode

75 class TestNode
85 TestNode (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description);
86 TestNode (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description, const std::vector<TestNode*>& children);
87 virtual ~TestNode (void);
93 void getChildren (std::vector<TestNode*>& children) const;
94 void addChild (TestNode* node);
107 std::vector<TestNode*> m_children;
119 class TestCaseGroup : public TestNode
123 TestCaseGroup (TestContext& testCtx, const char* name, const char* description, const std::vector<TestNode*>& children);
149 class TestCase : public TestNode