Beispiel #1
0
 /** Tries to start the given program and expect the call completed with the status. */
 protected void startProgram(Id.Program program, int expectedStatusCode) throws Exception {
   startProgram(program, ImmutableMap.<String, String>of(), expectedStatusCode);
 }
Beispiel #2
0
 /** Starts the given program with the given runtime arguments. */
 protected void startProgram(Id.Program program, Map<String, String> args) throws Exception {
   startProgram(program, args, 200);
 }
Beispiel #3
0
 /** Starts the given program. */
 protected void startProgram(Id.Program program) throws Exception {
   startProgram(program, 200);
 }