1 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 35 39 40 public class C_ClientView extends JTestCase { 41 42 protected static String REMOTE_RUNNER_HOME = "EntrySLHome"; 43 44 45 public C_ClientView (String name) { 46 super(name); 47 } 48 49 public static Test suite() { 50 TestSuite suite = new TestSuite(); 51 suite.addTest(F_ClientViewSL.suite()); 52 suite.addTest(F_ClientViewSF.suite()); 53 return suite; 54 } 55 56 public static void main (String args[]) { 57 RSuite rs = new RSuite("unused"); 58 rs.setRunnerHomeName(REMOTE_RUNNER_HOME); 59 rs.useBeans("local", false); 60 61 62 try { 63 RemoteRunner tr = rs.getRemoteRunner(); 64 String Result = tr.run(C_ClientView.class); 65 System.out.println(Result); 66 } catch(Exception e) { 67 e.printStackTrace(); 68 System.exit(2); 69 } 70 71 72 } 73 } 74 | Popular Tags |