View Javadoc
1   package com.atlassian.cache.vcache;
2   
3   import com.atlassian.cache.AbstractCacheLazyTest;
4   import com.atlassian.cache.AbstractCacheTest;
5   
6   import org.junit.Before;
7   import org.junit.Ignore;
8   
9   public class HybridCacheLazyTest extends AbstractCacheLazyTest
10  {
11      public HybridCacheLazyTest()
12      {
13          super(AbstractCacheTest.CacheType.HYBRID);
14      }
15  
16      @Before
17      public void setUp() throws Exception
18      {
19          factory = TestUtils.createCacheFactory();
20      }
21  
22      @Ignore
23      @Override
24      public void testRemoveConcurrentWithLoaderLocal()
25      {
26          // Not supported
27      }
28  
29      @Ignore
30      @Override
31      public void testRemoveAllConcurrentWithLoaderLocal()
32      {
33          // Not supported
34      }
35  
36      @Ignore
37      @Override
38      public void testRemoveConcurrentWithSupplierLocal()
39      {
40          // Not supported
41      }
42  
43      @Ignore
44      @Override
45      public void testRemoveAllConcurrentWithSupplierLocal()
46      {
47          // Not supported
48      }
49  }