use of org.testng.remote.RemoteArgs in project intellij-community by JetBrains.
the class TestNGForkedStarter method main.
public static void main(String[] args) throws Exception {
final IDEARemoteTestNG testNG = new IDEARemoteTestNG(null);
CommandLineArgs cla = new CommandLineArgs();
RemoteArgs ra = new RemoteArgs();
new JCommander(Arrays.asList(cla, ra), args);
testNG.configure(cla);
testNG.run();
System.exit(0);
}
Aggregations