assertEquals(thread0, threads.get(2));
assertEquals(thread1, threads.get(1));
assertEquals(thread2, threads.get(0));
// Verify none of the other threads is ready to be evicted.
clientpool.evict();
threads = clientpool.getContentsByAscendingAge();
assertEquals(3, threads.size());
assertEquals(thread0, threads.get(2));
assertEquals(thread1, threads.get(1));
assertEquals(thread2, threads.get(0));