1 45 package org.exolab.jms.net.http.registry; 46 47 import junit.framework.Test; 48 import junit.framework.TestSuite; 49 50 import org.exolab.jms.net.registry.RegistryTestCase; 51 import org.exolab.jms.net.registry.Registry; 52 53 54 60 public class HTTPRegistryTest extends RegistryTestCase { 61 62 67 public HTTPRegistryTest(String name) { 68 super(name, "http-server://localhost:3030", 69 "http://localhost:8080/openjms-tunnel/tunnel"); 70 } 71 72 77 public static Test suite() { 78 return new TestSuite(HTTPRegistryTest.class); 79 } 80 81 86 public static void main(String [] args) { 87 junit.textui.TestRunner.run(suite()); 88 } 89 90 } 91 | Popular Tags |