}
}
List<TestRunnable> testRuns = testRun.getTestRuns();
int successCount = 0, count = testRuns.size();
for (int i = 0; i < count; i++) {
TestRunnable testRunnable = testRuns.get(i);
ITestElement.Result testRunnableResult = checkTestRunnable(testRunnable, testResults);
result = andTestResults(result, testRunnableResult);
if (testRunnableResult == ITestElement.Result.OK) {
successCount++;
}