Examples of StopClassContainers


Examples of org.jboss.arquillian.container.spi.event.StopClassContainers

      //we need to manually set this since we don't actually start them
      for (Container c : registry.getContainers()) {
         c.setState(Container.State.STARTED);
      }

      fire(new StopClassContainers());

      assertEventFiredInContext(StopContainer.class, ContainerContext.class);
      assertEventFired(StopContainer.class, 2);

      assertEventFiredInContext(BeforeStop.class, ContainerContext.class);
View Full Code Here

Examples of org.jboss.arquillian.container.spi.event.StopClassContainers

   @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());
View Full Code Here

Examples of org.jboss.arquillian.container.spi.event.StopClassContainers

         container.fire(new UnDeployManagedDeployments());
      }
      finally
      {
         container.fire(new StopManualContainers());
         container.fire(new StopClassContainers());
      }
   }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.