Searched refs:testRunResults (Results 1 – 2 of 2) sorted by relevance
461 public static TestRunResult merge(List<TestRunResult> testRunResults) { in merge() argument462 return merge(testRunResults, MergeStrategy.ONE_TESTCASE_PASS_IS_PASS); in merge()475 public static TestRunResult merge(List<TestRunResult> testRunResults, MergeStrategy strategy) { in merge() argument476 if (testRunResults.isEmpty()) { in merge()483 if (testRunResults.size() == 1) { in merge()485 return testRunResults.get(0); in merge()489 String testRunName = testRunResults.get(0).getName(); in merge()506 for (TestRunResult eachRunResult : testRunResults) { in merge()
184 final Collection<TestRunResult> testRunResults = this.getMergedTestRunResults(); in updateInvocationStatus() local185 for (final TestRunResult result : testRunResults) { in updateInvocationStatus()