KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jonas > jtests > clients > local > C_local


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: C_local.java,v 1.2 2002/05/03 15:10:16 jonas Exp $
23  * --------------------------------------------------------------------------
24  */

25
26 package org.objectweb.jonas.jtests.clients.local;
27
28 import junit.framework.Test;
29 import junit.framework.TestSuite;
30 import org.objectweb.jonas.jtests.beans.remoterunner.RemoteRunner;
31 import org.objectweb.jonas.jtests.beans.remoterunner.RSuite;
32 import org.objectweb.jonas.jtests.util.JTestCase;
33
34 public class C_local extends JTestCase {
35
36     protected static String JavaDoc REMOTE_RUNNER_HOME = "EntrySLHome";
37
38     public C_local(String JavaDoc name) {
39     super(name);
40     }
41
42     /**
43      * This suite run BMP + CMP test cases
44      */

45     public static Test suite() {
46     TestSuite suite = new TestSuite();
47         suite.addTest(C_ClientView.suite());
48     return suite;
49     }
50
51     public static void main (String JavaDoc args[]) {
52         RSuite rs = new RSuite("unused");
53         rs.setRunnerHomeName(REMOTE_RUNNER_HOME);
54         rs.useBeans("local", false);
55         try {
56             RemoteRunner tr = rs.getRemoteRunner();
57             String JavaDoc Result = tr.run(C_local.class);
58             System.out.println(Result);
59         } catch(Exception JavaDoc e) {
60             e.printStackTrace();
61         }
62     }
63 }
64
Popular Tags