| RedeployEJBEndpointTestCase.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
// $Id: RedeployEJBEndpointTestCase.java,v 1.1.2.1 2004/11/05 12:55:28 tdiesler Exp $
package org.jboss.test.jbossnet.ejbsimple;
import junit.framework.Test;
/**
* Tests remote accessibility of stateless ejb bean after redeploy
* @since 11.11.2003
* @author <a href="mailto:Christoph.Jung@infor.de">Christoph G. Jung</a>
* @version $Revision: 1.1.2.1 $
*/
public class RedeployEJBEndpointTestCase extends EJBEndpointTestCase
{
// Constructors --------------------------------------------------
public RedeployEJBEndpointTestCase(String name)
{
super(name);
}
/** this is to deploy the whole ear */
public static Test suite() throws Exception
{
return getDeploySetup(RedeployEJBEndpointTestCase.class, "jbossnet-ejbsimple.ear");
}
/** standalone */
public static void main(String[] args)
{
junit.textui.TestRunner.run(RedeployEJBEndpointTestCase.class);
}
}
| RedeployEJBEndpointTestCase.java |