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