KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > jbossnet > wsr > RedeployWSRUnitTestCase


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: RedeployWSRUnitTestCase.java,v 1.1.2.1 2004/11/05 12:55:52 tdiesler Exp $
9

10 package org.jboss.test.jbossnet.wsr;
11
12 import junit.framework.Test;
13
14
15 /**
16  * Tests remote accessibility of "ordinary" (wsr-) deployed Axis services
17  * @since 11. Oktober 2001
18  * @author <a HREF="mailto:Christoph.Jung@infor.de">Christoph G. Jung</a>
19  * @version $Revision: 1.1.2.1 $
20  */

21 public class RedeployWSRUnitTestCase extends WSRUnitTestCase
22 {
23
24    // Constructors --------------------------------------------------
25
public RedeployWSRUnitTestCase(String JavaDoc name)
26    {
27       super(name);
28    }
29
30    /** suite method */
31    public static Test suite() throws Exception JavaDoc
32    {
33       return getDeploySetup(RedeployWSRUnitTestCase.class, "jbossnet-wsr.wsr");
34    }
35 }
Popular Tags