KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jonas > jonasadmin > test > deploy > C_JonasAdminDeploy


1 /**
2  * JOnAS: Java(TM) Open Application Server
3  * Copyright (C) 1999-2005 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 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_JonasAdminDeploy.java,v 1.1 2005/07/11 16:01:33 kemlerp Exp $
23  * --------------------------------------------------------------------------
24  */

25
26 package org.objectweb.jonas.jonasadmin.test.deploy;
27
28 import junit.framework.Test;
29 import junit.framework.TestSuite;
30
31 import org.objectweb.jonas.jonasadmin.test.util.JonasAdminTestCase;
32
33 /**
34  * Define a class to test deploy in jonasAdmin
35  * Test : - deploy
36  *
37  * @author Paul Kemler
38  */

39 public class C_JonasAdminDeploy extends JonasAdminTestCase {
40
41     /**
42      * Constructor with a specified name
43      * @param name the name
44      */

45     public C_JonasAdminDeploy(String JavaDoc 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_JonasAdminDeploy.suite());
57         return suite;
58     }
59
60     /**
61      * Main method
62      * @param args the arguments
63      */

64     public static void main (String JavaDoc[] args) {
65         junit.textui.TestRunner.run(suite());
66     }
67 }
68
69
Popular Tags