View Javadoc

1   package com.atlassian.cache.memory;
2   
3   import com.atlassian.cache.AbstractCacheEagerTest;
4   import org.junit.Before;
5   
6   /**
7    * Test the delegated eager Cache
8    *
9    * @since 2.0
10   */
11  public class DelegatingCacheEagerTest extends AbstractCacheEagerTest
12  {
13      @Before
14      public void setUp() throws Exception
15      {
16          factory = new MemoryCacheManager();
17      }
18  }