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