KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > jbossnet > jmx > RedeployJmxUnitTestCase


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7
8 // $Id: RedeployJmxUnitTestCase.java,v 1.1.2.1 2004/11/05 12:55:31 tdiesler Exp $
9

10 package org.jboss.test.jbossnet.jmx;
11
12 import junit.framework.Test;
13
14 /**
15  * Tests remote accessibility of JMX services
16  * @since 11. Oktober 2001
17  * @author <a HREF="mailto:Christoph.Jung@infor.de">Christoph G. Jung</a>
18  * @author <a HREF="mailto:pbraswell@utopiansoft.com">Peter Braswell</a>
19  * @version $Revision: 1.1.2.1 $
20  */

21 public class RedeployJmxUnitTestCase extends JmxUnitTestCase
22 {
23    // Constructors --------------------------------------------------
24
public RedeployJmxUnitTestCase(String JavaDoc name)
25    {
26       super(name);
27    }
28
29    /**
30     * Method suite, deploys additional jmx bean+web service
31     * @return
32     * @throws Exception
33     */

34
35    public static Test suite() throws Exception JavaDoc
36    {
37       return getDeploySetup(RedeployJmxUnitTestCase.class, "jbossnet-jmx.sar");
38    }
39 }
40
Popular Tags