Proc proc = null;
try {
final RunResponse runResponse = connection.execute(new Run(app.getName(), "sleep 60", false), apiKey);
proc = runResponse.getProc();
List<Proc> response = connection.execute(new ProcessList(app.getName()), apiKey);
assertEquals(response.size(), 1);
assertEquals(response.get(0).getProcess(), proc.getProcess());
assertEquals(response.get(0).getCommand(), proc.getCommand());
} finally {
if (proc != null) {