78798081828384
* Suite Level */ public void execute(@Observes BeforeSuite event) { container.fire(new SetupContainers()); container.fire(new StartManagedContainers()); }
5253545556575859
public void restart(@Observes BeforeClass event) throws Exception { if(shouldRestart()) { controlEvent.fire(new StopManagedContainers()); controlEvent.fire(new StartManagedContainers()); } }