| RedeployExampleTestCase.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
// $Id: RedeployExampleTestCase.java,v 1.1.2.2 2005/03/04 22:11:37 tdiesler Exp $
package org.jboss.test.webservice.admindevel;
import junit.framework.Test;
/** A test for the examples from the JBoss Admin Devel book.
*
* @author Thomas.Diesler@jboss.org
* @version $Revision: 1.1.2.2 $
*/
public class RedeployExampleTestCase extends ExampleTestCase
{
// Constructors --------------------------------------------------
public RedeployExampleTestCase(String name)
{
super(name);
}
/** this is to deploy the whole ear */
public static Test suite() throws Exception
{
return getDeploySetup(RedeployExampleTestCase.class, "ws4ee-admindevel.jar, ws4ee-admindevel-client.jar");
}
}
| RedeployExampleTestCase.java |