assertEquals(context, cache.get("foo"));
}
@Test(expected=RetryCacheCapacityExceededException.class)
public void testPutOverLimit() {
RetryContextSupport context = new RetryContextSupport(null);
cache.setCapacity(1);
cache.put("foo", context);
cache.put("foo", context);
}