Srv.Client testClient = new Srv.Client(clientInProto, clientOutProto);
testClient.send_Janky(1);
// System.out.println(clientOutTrans.inspect());
TRpcConnectionContext ctx = new TRpcConnectionContext(null, clientInProto, clientOutProto);
testProcessor.process(clientOutProto, clientInProto, ctx);
// System.out.println(clientInTrans.inspect());
int result = testClient.recv_Janky();
if (result != 2) {
throw new RuntimeException("Got an unexpected result: " + result);