Example #1
0
 private void waitForCompletion() throws InterruptedException {
   for (ErdoTestThread thread : threads) {
     thread.join();
   }
   LOG.log(Level.INFO, "Test threads have all exited.");
 }
Example #2
0
 private void startThreads() {
   for (ErdoTestThread thread : threads) {
     thread.start();
   }
 }