Home | History | Annotate | Download | only in scripts

Lines Matching defs:BatchResult

94 class BatchResult:
113 batchResult = BatchResult(batchResultName if batchResultName != None else os.path.basename(filename))
114 batchResult.results = readTestCaseResultsFromCSV(filename)
115 return batchResult
140 for batchResult in batchResults:
141 for result in batchResult.results:
150 def genResultMap (batchResult):
152 for result in batchResult.results:
198 for batchResult in batchResults:
199 headerCol += '<td class="Header">%s</td>\n' % batchResult.name
316 curBatchResult = BatchResult("current")