public void call(TAsyncMethodCall method) throws TException {
// do nothing
}
};
Srv.AsyncClient c = new AsyncClient(null, mockClientManager, null);
c.Janky(0, null);
try {
c.checkReady();
fail("should have hit an exception");
} catch (Exception e) {
// awesome
}
}