remove latest commit
This commit is contained in:
parent
58aae2a09d
commit
870b93df70
@ -9,7 +9,6 @@ import javax.cache.configuration.FactoryBuilder;
|
|||||||
import javax.cache.configuration.MutableConfiguration;
|
import javax.cache.configuration.MutableConfiguration;
|
||||||
import javax.cache.spi.CachingProvider;
|
import javax.cache.spi.CachingProvider;
|
||||||
|
|
||||||
import org.junit.After;
|
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
@ -33,9 +32,4 @@ public class CacheLoaderTest {
|
|||||||
assertEquals("fromCache" + i, value);
|
assertEquals("fromCache" + i, value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@After
|
|
||||||
public void closeCache() {
|
|
||||||
cache.close();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,6 @@ import javax.cache.Caching;
|
|||||||
import javax.cache.configuration.MutableConfiguration;
|
import javax.cache.configuration.MutableConfiguration;
|
||||||
import javax.cache.spi.CachingProvider;
|
import javax.cache.spi.CachingProvider;
|
||||||
|
|
||||||
import org.junit.After;
|
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
@ -30,9 +29,4 @@ public class EntryProcessorTest {
|
|||||||
this.cache.invoke("key", new SimpleEntryProcessor());
|
this.cache.invoke("key", new SimpleEntryProcessor());
|
||||||
assertEquals("value - modified", cache.get("key"));
|
assertEquals("value - modified", cache.get("key"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@After
|
|
||||||
public void closeCache() {
|
|
||||||
cache.close();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -10,7 +10,6 @@ import javax.cache.configuration.MutableCacheEntryListenerConfiguration;
|
|||||||
import javax.cache.configuration.MutableConfiguration;
|
import javax.cache.configuration.MutableConfiguration;
|
||||||
import javax.cache.spi.CachingProvider;
|
import javax.cache.spi.CachingProvider;
|
||||||
|
|
||||||
import org.junit.After;
|
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
@ -43,10 +42,4 @@ public class EventListenerTest {
|
|||||||
this.cache.put("key", "newValue");
|
this.cache.put("key", "newValue");
|
||||||
assertEquals(true, this.listener.getUpdated());
|
assertEquals(true, this.listener.getUpdated());
|
||||||
}
|
}
|
||||||
|
|
||||||
@After
|
|
||||||
public void closeCache() {
|
|
||||||
cache.close();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user