01: /**
02: * JOnAS: Java(TM) Open Application Server
03: * Copyright (C) 1999-2005 Bull S.A.
04: * Contact: jonas-team@objectweb.org
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation; either
09: * version 2.1 of the License, or 1any 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: C_JonasAdminServiceDiscovery.java 7340 2005-09-07 12:37:42Z kemlerp $
23: * --------------------------------------------------------------------------
24: */package org.objectweb.jonas.jonasadmin.test.service.discovery;
25:
26: import org.objectweb.jonas.jonasadmin.test.util.JonasAdminTestCase;
27:
28: import com.meterware.httpunit.WebConversation;
29:
30: import junit.framework.Test;
31: import junit.framework.TestSuite;
32:
33: /**
34: * Define a class to test discovery service
35: * Test : - service/discovery
36: *
37: * @author Paul Kemler
38: */
39: public class C_JonasAdminServiceDiscovery extends JonasAdminTestCase {
40:
41: /**
42: * Constructor with a specified name
43: * @param name the name
44: */
45: public C_JonasAdminServiceDiscovery(String name) {
46: super (name);
47: }
48:
49: /**
50: * Get a new TestSuite for this class
51: * It includes all jonasAdmin tests
52: * @return a new TestSuite for this class
53: */
54: public static Test suite() {
55: TestSuite suite = new TestSuite();
56: suite.addTest(F_JonasAdminDiscovery.suite());
57:
58: return suite;
59: }
60:
61: /**
62: * Main method
63: * @param args the arguments
64: */
65: public static void main(String[] args) {
66: WebConversation wc = new WebConversation();
67: junit.textui.TestRunner.run(suite());
68: }
69: }
|