175176177178179180181182183
* @throws Exception if any error occurs */ @Test(expected = UnsupportedOperationException.class) public void testDeployDescriptor() throws Exception { Descriptor descriptor = mock(Descriptor.class); instance.deploy(descriptor); }
190191192193194195196197198
* @throws Exception if any error occurs */ @Test(expected = UnsupportedOperationException.class) public void testUndeployDescriptor() throws Exception { Descriptor descriptor = mock(Descriptor.class); instance.undeploy(descriptor); }