private static final Logger log = Logger.getLogger(MockInvokerInterruptTestCase.class);
public void test000() throws Throwable
{
InvokerLocator il = new InvokerLocator("unittest", "127.0.0.1", 9999, "mock", null);
CountDown startGate = new CountDown(1);
MockMicroSocketClientInvoker ci = new MockMicroSocketClientInvoker(il, startGate);
InvocationRequest ir = new InvocationRequest("", "", null, null, null, il);
Runnable interrupterRunnable = new ThreadInterrupter(Thread.currentThread(), startGate);
Thread interrupter = new Thread(interrupterRunnable);