| RedeployWSRUnitTestCase.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
// $Id: RedeployWSRUnitTestCase.java,v 1.1.2.1 2004/11/05 12:55:52 tdiesler Exp $
package org.jboss.test.jbossnet.wsr;
import junit.framework.Test;
/**
* Tests remote accessibility of "ordinary" (wsr-) deployed Axis services
* @since 11. Oktober 2001
* @author <a href="mailto:Christoph.Jung@infor.de">Christoph G. Jung</a>
* @version $Revision: 1.1.2.1 $
*/
public class RedeployWSRUnitTestCase extends WSRUnitTestCase
{
// Constructors --------------------------------------------------
public RedeployWSRUnitTestCase(String name)
{
super(name);
}
/** suite method */
public static Test suite() throws Exception
{
return getDeploySetup(RedeployWSRUnitTestCase.class, "jbossnet-wsr.wsr");
}
}| RedeployWSRUnitTestCase.java |