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