org.pantsbuild.tools.junit.ConsoleRunner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junit-runner Show documentation
Show all versions of junit-runner Show documentation
A command line tool for running junit tests that provides functionality above and beyond
that provided by org.junit.runner.JUnitCore.
package org.pantsbuild.tools.junit;
import org.pantsbuild.tools.junit.impl.ConsoleRunnerImpl;
/**
* Main entry point for the junit-runner task.
*
* All implementation classes have been moved to sub-packages to they can be shaded.
*/
public class ConsoleRunner {
public static void main(String args[]) {
ConsoleRunnerImpl.main(args);
}
}