}
}
@Test
public void testThreadUnbinding() {
ThreadBound testItem = Mockito.mock(ThreadBound.class);
Cache<ThreadBound> threadBoundCache = cacheManagerService.getCache(
"testCache", CacheScope.THREAD);
threadBoundCache.put("testItem", testItem);
threadBoundCache.remove("testItem");
threadBoundCache.put("testItem", testItem);