Home | History | Annotate | Download | only in executor

Lines Matching refs:TestGroup

57 class TestGroup;
67 const TestGroup* getParent (void) const { return m_parent; }
76 TestNode (TestGroup* parent, TestNodeType nodeType, const char* name, const char* desc);
82 TestGroup* m_parent;
88 class TestGroup : public TestNode
91 ~TestGroup (void);
100 TestGroup* createGroup (const char* name, const char* description);
104 TestGroup (TestGroup* parent, TestNodeType nodeType, const char* name, const char* description);
114 class TestRoot : public TestGroup
127 static TestCase* createAsChild (TestGroup* parent, TestCaseType caseType, const char* name, const char* description);
130 TestCase (TestGroup* parent, TestCaseType caseType, const char* name, const char* description);
150 std::map<std::string, TestGroup*> m_groupMap;
164 void addGroup (const TestGroup* testGroup);
168 void removeGroup (const TestGroup* testGroup);
195 GroupState (const TestGroup* group_) : group(group_), childNdx(0) {}
197 const TestGroup* group;