Skip to content

Instantly share code, notes, and snippets.

@davehagler
davehagler / ClasspathTestRunner.java
Created May 27, 2016 19:34
Custom Classpath JUnit Test Runner
import java.net.URL;
import java.net.URLClassLoader;
import java.util.ArrayList;
import org.junit.runner.notification.RunNotifier;
import org.junit.runners.BlockJUnit4ClassRunner;
import org.junit.runners.model.InitializationError;
public class ClasspathTestRunner extends BlockJUnit4ClassRunner {