Examples of JSR88ModuleTypeMapper


Examples of org.jboss.arquillian.container.jsr88.remote_1_2.JSR88ModuleTypeMapper

   }

   @Test
   public void testSequentialUsage()
   {
      JSR88ModuleTypeMapper mapper = getMapper();
      Archive<?> rar = ShrinkWrap.create(ResourceAdapterArchive.class ,"test.rar");
      assertSame(ModuleType.RAR, mapper.getModuleType(rar));
      Archive<?> war = ShrinkWrap.create(WebArchive.class ,"test.war");
      assertSame(ModuleType.WAR, mapper.getModuleType(war));
   }
View Full Code Here

Examples of org.jboss.arquillian.container.jsr88.remote_1_2.JSR88ModuleTypeMapper

      assertSame(ModuleType.WAR, mapper.getModuleType(war));
   }

   private JSR88ModuleTypeMapper getMapper()
   {
      return new JSR88ModuleTypeMapper();
   }
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.