com.github.mkolisnyk.cucumber.runner.CLIRunner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cucumber-runner Show documentation
Show all versions of cucumber-runner Show documentation
The part of Cucumber Reports library which contains extended Cucumber-JVM runners and all relevant functionality.
package com.github.mkolisnyk.cucumber.runner;
import cucumber.api.cli.Main;
public final class CLIRunner {
private CLIRunner() {
}
public static void main(String[] argv) throws Throwable {
byte exitstatus = Main.run(argv, Thread.currentThread().getContextClassLoader());
System.exit(exitstatus);
}
}