Examples of ForgeArchive


Examples of org.jboss.forge.arquillian.archive.ForgeArchive

public class ClassLoaderAdapterJavaIOTest
{
   @Deployment(order = 3)
   public static ForgeArchive getDeployment()
   {
      ForgeArchive archive = ShrinkWrap.create(ForgeArchive.class)
               .addBeansXML()
               .addClasses(JavaIOFactory.class)
               .addAsLocalServices(ClassLoaderAdapterJavaIOTest.class);

      return archive;
View Full Code Here

Examples of org.jboss.forge.arquillian.archive.ForgeArchive

   }

   @Deployment(name = "dep,1", testable = false, order = 2)
   public static ForgeArchive getDeploymentDep1()
   {
      ForgeArchive archive = ShrinkWrap.create(ForgeArchive.class)
               .addClasses(JavaIOFactory.class)
               .addBeansXML();

      return archive;
   }
View Full Code Here

Examples of org.jboss.forge.arquillian.archive.ForgeArchive

public class CLACProxiedCollectionsTest
{
   @Deployment(order = 3)
   public static ForgeArchive getDeployment()
   {
      ForgeArchive archive = ShrinkWrap.create(ForgeArchive.class)
               .addBeansXML()
               .addClasses(ProfileCommand.class, ProfileManager.class, ProfileManagerImpl.class, Profile.class)
               .addAsLocalServices(CLACProxiedCollectionsTest.class);

      return archive;
View Full Code Here

Examples of org.jboss.forge.arquillian.archive.ForgeArchive

   }

   @Deployment(name = "dep,1", testable = false, order = 2)
   public static ForgeArchive getDeploymentDep1()
   {
      ForgeArchive archive = ShrinkWrap.create(ForgeArchive.class)
               .addClasses(ProfileCommand.class, ProfileManager.class, Profile.class)
               .addBeansXML();

      return archive;
   }
View Full Code Here

Examples of org.jboss.forge.arquillian.archive.ForgeArchive

public class TestModeTest
{
   @Deployment
   public static ForgeArchive getDeployment()
   {
      ForgeArchive archive = ShrinkWrap.create(ForgeArchive.class)
               .addAsLocalServices(TestModeTest.class);

      return archive;
   }
View Full Code Here

Examples of org.jboss.forge.arquillian.archive.ForgeArchive

public class AssumptionViolatedTest
{
   @Deployment
   public static ForgeArchive getDeployment()
   {
      ForgeArchive archive = ShrinkWrap.create(ForgeArchive.class)
               .addAsLocalServices(AssumptionViolatedTest.class);

      return archive;
   }
View Full Code Here

Examples of org.jboss.forge.arquillian.archive.ForgeArchive

public class CLACProxiedCollectionsReturnTypeUnwrappingTest
{
   @Deployment(order = 3)
   public static ForgeArchive getDeployment()
   {
      ForgeArchive archive = ShrinkWrap.create(ForgeArchive.class)
               .addBeansXML()
               .addClasses(Profile.class, ProfileManager.class, ProfileFactory.class)
               .addAsLocalServices(CLACProxiedCollectionsReturnTypeUnwrappingTest.class);

      return archive;
View Full Code Here

Examples of org.jboss.forge.arquillian.archive.ForgeArchive

   }

   @Deployment(name = "dep1,1", testable = false, order = 2)
   public static ForgeArchive getDeploymentDep1()
   {
      ForgeArchive archive = ShrinkWrap.create(ForgeArchive.class)
               .addClasses()
               .addAsAddonDependencies(AddonDependencyEntry.create("dep2", "2"))
               .addBeansXML();

      return archive;
View Full Code Here

Examples of org.jboss.forge.arquillian.archive.ForgeArchive

   }

   @Deployment(name = "dep2,2", testable = false, order = 2)
   public static ForgeArchive getDeploymentDep2()
   {
      ForgeArchive archive = ShrinkWrap.create(ForgeArchive.class)
               .addClasses(Profile.class, ProfileManager.class, ProfileManagerImpl.class, ProfileFactory.class)
               .addBeansXML();

      return archive;
   }
View Full Code Here

Examples of org.jboss.forge.arquillian.archive.ForgeArchive

public class ExportedInstanceApiTest
{
   @Deployment(order = 0)
   public static ForgeArchive getDeployment()
   {
      ForgeArchive archive = ShrinkWrap.create(ForgeArchive.class)
               .addAsAddonDependencies(
               );

      archive.addAsLocalServices(ExportedInstanceApiTest.class);

      return archive;
   }
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.