private static final int NUM_THREADS = 1;
private static final int MAX_PENDING = 1;
private static JavaSimpleService.Client newClient() throws Exception {
TFramedTransport trans = new TFramedTransport(new TSocket(HOST, PORT));
trans.open();
return new JavaSimpleService.Client(new TBinaryProtocol(trans));
}
@BeforeClass
public static void setUpBeforeClass() throws Exception {