this);
threads[i] = new Thread(runnable, "TestThread" + i);
}
MultiThreadTestRunner runner =
new MultiThreadTestRunner(threads, threadOutcomes);
// if the user wants to show results
if (showResults) {
// clear the buffer for the new results
results = new StringBuffer();
}
// evaluate it as a get, reps number of times
start = System.currentTimeMillis();
boolean foundFailedThread = false;
foundFailedThread = runner.runThreadsAndOutputResults(System.out);
end = System.currentTimeMillis();
}