Package test.integration.util

Examples of test.integration.util.DependencyMatcher


   @Test
   public void installJBossAS6EmbeddedContainer() throws Exception
   {
      installContainer("jbossas-embedded-6",
            Arrays.asList(
                  new DependencyMatcher("arquillian-jbossas-embedded-6")));
   }
View Full Code Here


   @Test
   public void installJBossAS6ManagedContainer() throws Exception
   {
      installContainer("jbossas-managed-6",
            Arrays.asList(
                  new DependencyMatcher("arquillian-jbossas-managed-6")));
   }
View Full Code Here

   @Test
   public void installJBossAS6RemoteContainer() throws Exception
   {
      installContainer("jbossas-remote-6",
            Arrays.asList(
                  new DependencyMatcher("arquillian-jbossas-remote-6")));
   }
View Full Code Here

   @Test
   public void installJBossAS7ManagedContainer() throws Exception
   {
      installContainer("jbossas-managed-7",
            Arrays.asList(
                  new DependencyMatcher("jboss-as-arquillian-container-managed")));
   }
View Full Code Here

   @Test
   public void installJBossAS7RemoteContainer() throws Exception
   {
      installContainer("jbossas-remote-7",
            Arrays.asList(
                  new DependencyMatcher("jboss-as-arquillian-container-remote")));
   }
View Full Code Here

    @Test
    public void installWildFlyManagedContainer() throws Exception
    {
        installContainer("wildfly-managed",
                Arrays.asList(
                        new DependencyMatcher("wildfly-arquillian-container-managed")));
    }
View Full Code Here

    @Test
    public void installWildFlyRemoteContainer() throws Exception
    {
        installContainer("wildfly-remote",
                Arrays.asList(
                        new DependencyMatcher("wildfly-arquillian-container-remote")));
    }
View Full Code Here

   @Test
   public void installJetty6EmbeddedContainer() throws Exception
   {
      installContainer("jetty-embedded-6.1",
            Arrays.asList(
                  new DependencyMatcher("arquillian-jetty-embedded-6.1"),
                  new DependencyMatcher("jetty")));
   }
View Full Code Here

   @Test
   public void installJetty7EmbeddedContainer() throws Exception
   {
      installContainer("jetty-embedded-7",
            Arrays.asList(
                  new DependencyMatcher("arquillian-jetty-embedded-7"),
                  new DependencyMatcher("jetty-webapp")));
   }
View Full Code Here

   @Test
   public void installTomcat6EmbeddedContainer() throws Exception
   {
      installContainer("tomcat-embedded-6",
            Arrays.asList(
                  new DependencyMatcher("arquillian-tomcat-embedded-6"),
                  new DependencyMatcher("catalina"),
                  new DependencyMatcher("catalina"),
                  new DependencyMatcher("coyote"),
                  new DependencyMatcher("jasper")));
   }
View Full Code Here

TOP

Related Classes of test.integration.util.DependencyMatcher

Copyright © 2018 www.massapicom. 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.