Home | History | Annotate | Download | only in log

Lines Matching refs:testCaseResult

99 	# Check if we have TestCaseResult
100 testCaseResult = findFirstElementByName(rootNodes, 'TestCaseResult')
101 if testCaseResult == None:
102 # Create TestCaseResult element
103 testCaseResult = doc.createElement('TestCaseResult')
104 testCaseResult.setAttribute('CasePath', result.name)
105 testCaseResult.setAttribute('CaseType', 'SelfValidate') # \todo [pyry] Not recoverable..
106 testCaseResult.setAttribute('Version', LOG_VERSION)
107 rootNodes.append(testCaseResult)
116 testCaseResult.appendChild(resultElem)