Home | History | Annotate | Download | only in executor

Lines Matching refs:caseType

31 const char* getTestCaseTypeName (TestCaseType caseType)
33 switch (caseType)
198 TestCase* TestGroup::createCase (TestCaseType caseType, const char* name, const char* description)
200 return TestCase::createAsChild(this, caseType, name, description);
241 TestCase* TestCase::createAsChild(TestGroup* parent, TestCaseType caseType, const char *name, const char *description)
243 return new TestCase(parent, caseType, name, description);
246 TestCase::TestCase (TestGroup* parent, TestCaseType caseType, const char* name, const char* description)
248 , m_caseType (caseType)
287 TestCase* TestHierarchyBuilder::createCase (const char* path, TestCaseType caseType)
314 return curGroup->createCase(caseType, components.back().c_str(), "" /* description */);