| JaxrBusinessQueryTestCase.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.test.jaxr.scout.query;
/** Tests Jaxr capability to do business queries
* @author <mailto:Anil.Saldhana@jboss.org>Anil Saldhana
* @since Dec 29, 2004
*/
import org.jboss.test.jaxr.scout.JaxrBaseTestCase;
import javax.xml.registry.JAXRException;
public class JaxrBusinessQueryTestCase extends JaxrBaseTestCase
{
protected String querystr = "JBOSS";
public void testBusinessQuery() throws JAXRException
{
searchBusiness(querystr);
}
}| JaxrBusinessQueryTestCase.java |