Last active
November 10, 2019 09:06
-
-
Save mustafau/5592409 to your computer and use it in GitHub Desktop.
Parallelize JUnit test suites.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.concurrent.ExecutorService; | |
import java.util.concurrent.Executors; | |
import java.util.concurrent.TimeUnit; | |
import org.junit.runners.Suite; | |
import org.junit.runners.model.InitializationError; | |
import org.junit.runners.model.RunnerBuilder; | |
import org.junit.runners.model.RunnerScheduler; | |
public class ParallelSuite extends Suite { | |
public ParallelSuite(Class<?> klass, RunnerBuilder builder) throws InitializationError { | |
super(klass, builder); | |
setScheduler(new RunnerScheduler() { | |
private final ExecutorService service = Executors.newFixedThreadPool(4); | |
public void schedule(Runnable childStatement) { | |
service.submit(childStatement); | |
} | |
public void finished() { | |
try { | |
service.shutdown(); | |
service.awaitTermination(Long.MAX_VALUE, TimeUnit.NANOSECONDS); | |
} catch (InterruptedException e) { | |
e.printStackTrace(System.err); | |
} | |
} | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment