Package org.apache.ziplock

Examples of org.apache.ziplock.WebModule$Named


@RunAsClient
@RunWith(Arquillian.class)
public class SubjectServiceTomEETest {
    @Deployment
    public static WebArchive archive() {
        return new WebModule(SubjectServiceTomEETest.class).getArchive()
                .addClass(VoteCounter.class)
                .addPackage(Subject.class.getPackage()) // domain
                .addAsWebInfResource(new ClassLoaderAsset("META-INF/persistence.xml"), "persistence.xml")
                .addAsWebInfResource(new ClassLoaderAsset("META-INF/env-entries.properties"), "env-entries.properties")
                .addAsWebInfResource(EmptyAsset.INSTANCE, "beans.xml")
View Full Code Here


@RunWith(Arquillian.class)
public class JAXRSHttpHeadersTest extends JaxrsTest {

    @Deployment(testable = false)
    public static WebArchive archive() {
        return new WebModule(JAXRSHttpHeadersTest.class).getArchive();
    }
View Full Code Here

        assertTrue(secondOutput.contains("disposed=true")); // check the previous cycle disposed the bean
    }

    @Deployment(testable = false)
    public static WebArchive createDeployment() {
        return new WebModule(ServletDisposeRequestScopeTest.class, ServletDisposeRequestScopeTest.class)
                .getArchive()
                .setWebXML(new StringAsset(Descriptors.create(WebAppDescriptor.class)
                        .version("3.0").exportAsString()))
                .addAsWebInfResource(EmptyAsset.INSTANCE, ArchivePaths.create("beans.xml"));
    }
View Full Code Here

@RunWith(Arquillian.class)
public class JAXWSTest {

    @Deployment(testable = false)
    public static WebArchive createDeployment() {
        return new WebModule(JAXWSTest.class).getArchive();
    }
View Full Code Here

@RunWith(Arquillian.class)
public class OpenEJBJarForAddressDeploymentTest {
    @Deployment(testable = false)
    public static WebArchive createDeployment() {
        return new WebModule(OpenEJBJarForAddressDeploymentTest.class).getArchive();
    }
View Full Code Here

@RunWith(Arquillian.class)
public class NoAppTest extends JaxrsTest {

    @Deployment(testable = false)
    public static WebArchive archive() {
        return new WebModule(NoAppTest.class).getArchive();
    }
View Full Code Here

@RunWith(Arquillian.class)
public class ScannedApplicationTest extends JaxrsTest {

    @Deployment(testable = false)
    public static WebArchive archive() {
        return new WebModule(ScannedApplicationTest.class).getArchive();
    }
View Full Code Here

@RunWith(Arquillian.class)
public class AnnotatedApplicationTest extends JaxrsTest {

    @Deployment(testable = false)
    public static WebArchive archive() {
        return new WebModule(AnnotatedApplicationTest.class).getArchive();
    }
View Full Code Here

@RunWith(Arquillian.class)
public class ListedApplicationTest extends JaxrsTest {

    @Deployment(testable = false)
    public static WebArchive archive() {
        return new WebModule(ListedApplicationTest.class).getArchive();
    }
View Full Code Here

@RunWith(Arquillian.class)
public class BasicAppilcationTest extends JaxrsTest {

    @Deployment(testable = false)
    public static WebArchive archive() {
        return new WebModule(BasicAppilcationTest.class).getArchive();
    }
View Full Code Here

TOP

Related Classes of org.apache.ziplock.WebModule$Named

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.