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_JonasAdminContainer.java 7340 2005-09-07 12:37:42Z kemlerp $
23: * --------------------------------------------------------------------------
24: */package org.objectweb.jonas.jonasadmin.test.service.container;
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 containers
35: * Test : - application container
36: * - ejb container
37: * - web container
38: *
39: * @author Paul Kemler
40: */
41: public class C_JonasAdminContainer extends JonasAdminTestCase {
42:
43: /**
44: * Constructor with a specified name
45: * @param name the name
46: */
47: public C_JonasAdminContainer(String name) {
48: super (name);
49: }
50:
51: /**
52: * Get a new TestSuite for this class
53: * It includes all jonasAdmin tests
54: * @return a new TestSuite for this class
55: */
56: public static Test suite() {
57: TestSuite suite = new TestSuite();
58: suite.addTest(F_JonasAdminEjbContainer.suite());
59: suite.addTest(F_JonasAdminWebContainer.suite());
60: suite.addTest(F_JonasAdminApplicationContainer.suite());
61: return suite;
62: }
63:
64: /**
65: * Main method
66: * @param args the arguments
67: */
68: public static void main(String[] args) {
69: WebConversation wc = new WebConversation();
70: junit.textui.TestRunner.run(suite());
71: }
72: }
|