Lines Matching refs:casePath
50 TestCaseResultData::TestCaseResultData (const char* casePath)
51 : m_casePath (casePath)
84 bool BatchResult::hasTestCaseResult (const char* casePath) const
86 return m_resultMap.find(casePath) != m_resultMap.end();
89 ConstTestCaseResultPtr BatchResult::getTestCaseResult (const char* casePath) const
91 map<string, int>::const_iterator pos = m_resultMap.find(casePath);
96 TestCaseResultPtr BatchResult::getTestCaseResult (const char* casePath)
98 map<string, int>::const_iterator pos = m_resultMap.find(casePath);
103 TestCaseResultPtr BatchResult::createTestCaseResult (const char* casePath)
105 DE_ASSERT(!hasTestCaseResult(casePath));
108 m_resultMap[casePath] = (int)m_testCaseResults.size();
110 TestCaseResultPtr caseResult(new TestCaseResultData(casePath));