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