Пример #1
0
 @Override
 public void exceptionOccurred(Exception e) {
   ExecutionLog log = client.getExecutionLog();
   log.addException(e);
   try {
     client.kill();
   } finally {
     testSystemStopped(log, e);
   }
 }
Пример #2
0
 @Override
 public void kill() {
   client.kill();
   testSystemStopped(client.getExecutionLog(), null);
 }
Пример #3
0
 @Override
 public void bye() throws IOException, InterruptedException {
   client.done();
   client.join();
   testSystemStopped(client.getExecutionLog(), null);
 }