Home | History | Annotate | Download | only in common

Lines Matching refs:description

91  * description. Root and test group nodes have a list of children.
107 TestNode (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description);
108 TestNode (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description, const std::vector<TestNode*>& children);
144 TestCaseGroup (TestContext& testCtx, const char* name, const char* description);
145 TestCaseGroup (TestContext& testCtx, const char* name, const char* description, const std::vector<TestNode*>& children);
174 TestCase (TestContext& testCtx, const char* name, const char* description);
175 TestCase (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description);
182 TestStatus (qpTestResult code, const std::string& description) : m_code(code), m_description(description) {}
188 static TestStatus pass (const std::string& description) { return TestStatus(QP_TEST_RESULT_PASS, description); }
189 static TestStatus fail (const std::string& description) { return TestStatus(QP_TEST_RESULT_FAIL, description); }