@Test
public void testPoolEvictions() throws InterruptedException {
client = newHttpClient(1, 1000, null);
final CountDownLatch latch = new CountDownLatch(1);
HttpClientMetricEventsListener listener = new HttpClientMetricEventsListener() {
@Override
protected void onPooledConnectionEviction() {
latch.countDown();
}
};