}
@Test(expected=UnsupportedSchemeException.class)
public void testConnectionInitializeUnknownScheme() throws Exception {
final HttpHost target = new HttpHost("somehost", -1, "whatever");
final HttpRoute route = new HttpRoute(target, null, true);
final HttpContext context = new BasicHttpContext();
final Log log = Mockito.mock(Log.class);
final CPoolEntry poolentry = new CPoolEntry(log, "some-id", route, conn, -1, TimeUnit.MILLISECONDS);
poolentry.markRouteComplete();