Home | History | Annotate | Download | only in remote
      1 package org.testng.remote;
      2 
      3 import com.beust.jcommander.Parameter;
      4 
      5 public class RemoteArgs {
      6   public static final String PORT = "-serport";
      7   @Parameter(names = PORT, description = "The port for the serialization protocol")
      8   public Integer serPort;
      9 
     10   public static final String DONT_EXIT= "-dontexit";
     11   @Parameter(names = DONT_EXIT, description = "Do not exit the JVM once done")
     12   public boolean dontExit = false;
     13 
     14   public static final String ACK = "-ack";
     15   @Parameter(names = ACK, description = "Use ACK's")
     16   public boolean ack = false;
     17 }
     18