Searched refs:testCaseNameMap (Results 1 – 1 of 1) sorted by relevance
53 private Map<String, Integer> testCaseNameMap; // map from test case name to its order field in TestResults101 this.testCaseNameMap = new HashMap<>(); in TestResults()130 if (!testCaseNameMap.containsKey(testCase.name)) { in addTestRun()131 testCaseNameMap.put(testCase.name, testCaseNameMap.size()); in addTestRun()246 resultsGrid = new String[testCaseNameMap.size()][testRuns.size() + 1]; in processReport()248 for (String testCaseName : testCaseNameMap.keySet()) { in processReport()249 resultsGrid[testCaseNameMap.get(testCaseName)][0] = testCaseName; in processReport()327 int index = testCaseNameMap.get(name); in processReport()