ISOServer isoServer = newIsoServer();
new Thread(isoServer).start();
XMLChannel clientChannel = newClientChannel();
clientChannel.connect();
// need to push some traffic through to complete the SSL handshake
clientChannel.send(new ISOMsg("0800"));
assertThat(clientChannel.receive(), hasMti("0810"));
isoServer.shutdown();