1 25 26 package org.objectweb.jonas.jtests.clients.wsgen; 27 28 import junit.framework.Test; 29 import junit.framework.TestSuite; 30 31 32 35 public class F_Generate extends A_WsGen { 36 37 public F_Generate(String name) { 38 super(name); 39 } 40 41 public static Test suite() { 42 return new TestSuite(F_Generate.class); 43 } 44 45 public void setUp() throws Exception { 46 super.setUp(); 47 } 48 49 public void tearDown() throws Exception { 50 super.tearDown(); 51 } 52 53 public void testWebappEndpointAlone() throws Exception { 54 } 58 59 public void testWsClientEjb() throws Exception { 60 } 64 65 public void testTimeEndpoint() throws Exception { 66 } 70 71 public static void main (String args[]) { 72 String testtorun = null; 73 for (int argn = 0; argn < args.length; argn++) { 75 String s_arg = args[argn]; 76 if (s_arg.equals("-n")) { 77 testtorun = args[++argn]; 78 } 79 } 80 if (testtorun == null) { 81 junit.textui.TestRunner.run(suite()); 82 } else { 83 junit.textui.TestRunner.run(new F_Generate(testtorun)); 84 } 85 } 86 87 } 88 | Popular Tags |