forker.fork ();
waiter.trigger ();
Assert.assertTrue (waiter.awaitCompleted (this.waitTimeout));
Assert.assertTrue (this.threading.destroy (this.waitTimeout));
while (true) {
final CaughtException exception = this.exceptionsQueue.queue.poll ();
if (exception == null)
break;
Assert.assertTrue ((exception.getCause () instanceof SecurityException) || (exception.getCause () instanceof AssertionError));
}
}