KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jonas > jtests > clients > service > A_ServiceUsage


1 /**
2  * JOnAS: Java(TM) Open Application Server
3  * Copyright (C) 1999 Bull S.A.
4  * Contact: jonas-team@objectweb.org
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19  * USA
20  *
21  * --------------------------------------------------------------------------
22  * $Id: A_ServiceUsage.java,v 1.4 2004/04/16 16:42:47 sauthieg Exp $
23  * --------------------------------------------------------------------------
24  */

25
26 package org.objectweb.jonas.jtests.clients.service;
27
28 import org.objectweb.jonas.jtests.util.JWebServicesTestCase;
29
30 /**
31  * abstract test case for web service usage (client side)
32  */

33 public abstract class A_ServiceUsage extends JWebServicesTestCase {
34
35     public A_ServiceUsage(String JavaDoc name) {
36         super(name);
37     }
38     
39     public void setUp() throws Exception JavaDoc {
40         super.setUp();
41         useBeans("wsclient");
42     }
43
44     public void tearDown() throws Exception JavaDoc {
45         super.tearDown();
46         unUseBeans("wsclient");
47     }
48
49 }
50
Popular Tags