@Test
public void testLive() throws Exception {
NonBlockingConnectionPool pool = new NonBlockingConnectionPool();
for (int i = 0; i < 10; i++) {
ConnectHandler ch = new ConnectHandler();
long start = System.nanoTime();
INonBlockingConnection nbc = pool.getNonBlockingConnection("www.gmx.com", 80, ch);
// perform ch.isConnected() later. It will be called multithreaded
HttpClientConnection con = new HttpClientConnection(nbc);
IHttpRequest request = new GetRequest("http://www.gmx.com/doesNotExist.html");