JaxrDeleteTestCase.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.jaxr.delete; import org.jboss.test.jaxr.common.JaxrTestCase; import javax.xml.registry.infomodel.Key; /** * Test case that tests the delete operation in the * Jaxr registry using Jaxr * @author <mailto:Anil.Saldhana@jboss.org>Anil Saldhana */ public class JaxrDeleteTestCase extends JaxrTestCase { public JaxrDeleteTestCase(String name) { super(name); } public void testJaxrDelete() throws Exception { String keyid = this.createOrganization(); Key key = blcm.createKey(keyid); this.deleteOrganization(key); } }
JaxrDeleteTestCase.java |