View Javadoc
1   package com.atlassian.cache.vcache;
2   
3   import com.atlassian.cache.AbstractLazyReferenceTest;
4   import com.atlassian.cache.Cache;
5   
6   import org.junit.Before;
7   import org.junit.Ignore;
8   
9   public class HybridCachedReferenceTest extends AbstractLazyReferenceTest
10  {
11      public HybridCachedReferenceTest()
12      {
13          super(CacheType.HYBRID);
14      }
15  
16      @Before
17      public void setUp() throws Exception
18      {
19          factory = TestUtils.createCacheFactory();
20      }
21  
22      @Override
23      protected <K, V> void assertEmpty(Cache<K, V> cache)
24      {
25          // VCache does not allow the size of a remote (external) cache to be obtained.
26      }
27  
28      @Ignore("CACHE-106/CACHE-108: Needs to be fixed (currently hard fails)")
29      @Override
30      public void testResetConcurrentWithLoadLocal()
31      {
32      }
33  }