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