1 25 package org.objectweb.jonas.jtests.clients.endpoint; 26 27 import junit.framework.Test; 28 import junit.framework.TestSuite; 29 30 import org.objectweb.jonas.jtests.util.JWebServicesTestCase; 31 32 33 38 public class C_endpoint extends JWebServicesTestCase { 39 40 public C_endpoint(String name) { 41 super(name); 42 } 43 44 47 public static Test suite() { 48 TestSuite suite = new TestSuite(); 49 suite.addTest(F_TimeEndpoint.suite()); 50 return suite; 51 } 52 53 public static void main (String args[]) { 54 junit.textui.TestRunner.run(suite()); 55 } 56 57 } 58 | Popular Tags |