View Javadoc
1   package com.atlassian.cache.vcache;
2   
3   import com.atlassian.cache.AbstractCacheEagerTest;
4   import com.atlassian.cache.AbstractCacheTest;
5   
6   import org.junit.Before;
7   
8   public class HybridCacheEagerTest extends AbstractCacheEagerTest
9   {
10      public HybridCacheEagerTest()
11      {
12          super(AbstractCacheTest.CacheType.HYBRID);
13      }
14  
15      @Before
16      public void setUp() throws Exception
17      {
18          factory = TestUtils.createCacheFactory();
19      }
20  }