Package org.apache.ziplock

Examples of org.apache.ziplock.WebModule


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

    @Deployment(testable = false)
    public static WebArchive archive() {
        return new WebModule(JAXRSCDIPojoTest.class, JAXRSCDIPojoTest.class).getArchive()
                .addAsWebInfResource(EmptyAsset.INSTANCE, ArchivePaths.create("beans.xml"));
    }
View Full Code Here


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

    @Deployment(testable = false)
    public static WebArchive archive() {
        return new WebModule(RestEjbBusinessLocalTest.class, RestEjbBusinessLocalTest.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, NoAppTest.class).getArchive();
    }
View Full Code Here

*/
@RunWith(Arquillian.class)
public class PathParamTest extends JaxrsTest {
    @Deployment(testable = false)
    public static WebArchive archive() {
        return new WebModule(PathParamTest.class, PathParamTest.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, ScannedApplicationTest.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, BasicAppilcationTest.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, AnnotatedApplicationTest.class).getArchive();
    }
View Full Code Here

    @ArquillianResource
    private URL deployedUrl;

    @Deployment(testable = false)
    public static WebArchive createDeployment() {
        return new WebModule(OpenEJBJarForAddressDeploymentTest.class, OpenEJBJarForAddressDeploymentTest.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, ListedApplicationTest.class).getArchive();
    }
View Full Code Here

        validateTest("simple");
    }

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

TOP

Related Classes of org.apache.ziplock.WebModule

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.