@Test
public void shouldNotStopCustomContainersInRegistry() throws Exception
{
registry.create(container5, serviceLoader).setState(Container.State.STARTED);
fire(new StopClassContainers());
verify(deployableContainer, times(0)).stop();
fire(new StopSuiteContainers());
verify(deployableContainer, times(0)).stop();
Assert.assertEquals(Container.State.STARTED, registry.getContainer(CONTAINER_5_NAME).getState());