1 25 26 package org.objectweb.jonas.jtests.clients.service; 27 28 import junit.framework.Test; 29 import junit.framework.TestSuite; 30 import org.objectweb.jonas.jtests.util.JWebServicesTestCase; 31 32 public class C_service extends JWebServicesTestCase { 33 34 public C_service(String name) { 35 super(name); 36 } 37 38 41 public static Test suite() { 42 TestSuite suite = new TestSuite(); 43 suite.addTest(F_AxisService.suite()); 44 return suite; 45 } 46 47 public static void main (String args[]) { 48 junit.textui.TestRunner.run(suite()); 49 } 50 } 51 | Popular Tags |