1 18 package org.apache.activemq.transport.vm; 19 20 import org.apache.activemq.transport.TransportBrokerTestSupport; 21 22 import junit.framework.Test; 23 24 public class VMTransportBrokerTest extends TransportBrokerTestSupport { 25 26 protected String getBindLocation() { 27 return "vm://localhost"; 28 } 29 30 public static Test suite() { 31 return suite(VMTransportBrokerTest.class); 32 } 33 34 public static void main(String [] args) { 35 junit.textui.TestRunner.run(suite()); 36 } 37 38 39 } 40 | Popular Tags |