| RedeployJmxUnitTestCase.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
// $Id: RedeployJmxUnitTestCase.java,v 1.1.2.1 2004/11/05 12:55:31 tdiesler Exp $
package org.jboss.test.jbossnet.jmx;
import junit.framework.Test;
/**
* Tests remote accessibility of JMX services
* @since 11. Oktober 2001
* @author <a href="mailto:Christoph.Jung@infor.de">Christoph G. Jung</a>
* @author <a href="mailto:pbraswell@utopiansoft.com">Peter Braswell</a>
* @version $Revision: 1.1.2.1 $
*/
public class RedeployJmxUnitTestCase extends JmxUnitTestCase
{
// Constructors --------------------------------------------------
public RedeployJmxUnitTestCase(String name)
{
super(name);
}
/**
* Method suite, deploys additional jmx bean+web service
* @return
* @throws Exception
*/
public static Test suite() throws Exception
{
return getDeploySetup(RedeployJmxUnitTestCase.class, "jbossnet-jmx.sar");
}
}
| RedeployJmxUnitTestCase.java |