use of org.junit.platform.console.options.PicocliCommandLineOptionsParser in project junit5 by junit-team.
the class ConsoleLauncher method execute.
@API(status = INTERNAL, since = "1.0")
public static ConsoleLauncherExecutionResult execute(PrintWriter out, PrintWriter err, String... args) {
CommandLineOptionsParser parser = new PicocliCommandLineOptionsParser();
ConsoleLauncher consoleLauncher = new ConsoleLauncher(parser, out, err);
return consoleLauncher.execute(args);
}
Aggregations