//inherit javadoc
public void run() throws Exception {
//Register for instrumentation calls from the transport
ConnectionTransportListener.registerListener(this);
//initiate a listen operation
TestServerEndpoint tse = new TestServerEndpoint(getListenPort());
BasicJeriExporter exporter =
new BasicJeriExporter(tse, new BasicILFactory());
TestServiceImpl service = new TestServiceImpl();
TestService stub = (TestService) exporter.export(service);
TestEndpoint te = tse.getTestEndpoint();
//make a call
stub.doSomething();
//Verify that the 3-arg connect method is called
if (methodCalls.get(connect2)==null) {
throw new TestException("The ConnectionManager"