View Javadoc
1   package com.atlassian.cache.vcache;
2   
3   import com.atlassian.cache.AbstractCacheEagerTest;
4   
5   import org.junit.Before;
6   
7   /**
8    * Test the delegated eager Local Cache
9    *
10   * @since 2.0
11   */
12  public class DelegatingLocalCacheEagerTest extends AbstractCacheEagerTest
13  {
14      public DelegatingLocalCacheEagerTest()
15      {
16          super(CacheType.LOCAL);
17      }
18  
19      @Before
20      public void setUp() throws Exception
21      {
22          factory = TestUtils.createCacheFactory();
23      }
24  }