Package org.jboss.shrinkwrap.descriptor.api

Examples of org.jboss.shrinkwrap.descriptor.api.Descriptor


     * @throws Exception if any error occurs
     */
    @Test(expected = UnsupportedOperationException.class)
    public void testDeployDescriptor() throws Exception {

        Descriptor descriptor = mock(Descriptor.class);

        instance.deploy(descriptor);
    }
View Full Code Here


     * @throws Exception if any error occurs
     */
    @Test(expected = UnsupportedOperationException.class)
    public void testUndeployDescriptor() throws Exception {

        Descriptor descriptor = mock(Descriptor.class);

        instance.undeploy(descriptor);
    }
View Full Code Here

TOP

Related Classes of org.jboss.shrinkwrap.descriptor.api.Descriptor

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.