remove latest commit

This commit is contained in:
Ahmed Tawila 2017-09-16 20:35:15 +02:00
parent 58aae2a09d
commit 870b93df70
3 changed files with 0 additions and 19 deletions

View File

@ -9,7 +9,6 @@ import javax.cache.configuration.FactoryBuilder;
import javax.cache.configuration.MutableConfiguration;
import javax.cache.spi.CachingProvider;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
@ -33,9 +32,4 @@ public class CacheLoaderTest {
assertEquals("fromCache" + i, value);
}
}
@After
public void closeCache() {
cache.close();
}
}

View File

@ -8,7 +8,6 @@ import javax.cache.Caching;
import javax.cache.configuration.MutableConfiguration;
import javax.cache.spi.CachingProvider;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
@ -30,9 +29,4 @@ public class EntryProcessorTest {
this.cache.invoke("key", new SimpleEntryProcessor());
assertEquals("value - modified", cache.get("key"));
}
@After
public void closeCache() {
cache.close();
}
}

View File

@ -10,7 +10,6 @@ import javax.cache.configuration.MutableCacheEntryListenerConfiguration;
import javax.cache.configuration.MutableConfiguration;
import javax.cache.spi.CachingProvider;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
@ -43,10 +42,4 @@ public class EventListenerTest {
this.cache.put("key", "newValue");
assertEquals(true, this.listener.getUpdated());
}
@After
public void closeCache() {
cache.close();
}
}