}
}
}
private void process(List<OSGiTestResult> testResults, int start, String out, String err) {
OSGiTestResult info = testResults.get(start);
List<OSGiTestResult> testCases = new ArrayList<OSGiTestResult>();
for (int i = start + 1; i < testResults.size(); i++) {
OSGiTestResult result = testResults.get(i);
if (result.isInfo()) {
break;
} else {
testCases.add(result);
}
}