aboutsummaryrefslogtreecommitdiffstats
path: root/guava-testlib/src/com/google/common/collect/testing/testers/MapClearTester.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava-testlib/src/com/google/common/collect/testing/testers/MapClearTester.java')
-rw-r--r--guava-testlib/src/com/google/common/collect/testing/testers/MapClearTester.java58
1 files changed, 4 insertions, 54 deletions
diff --git a/guava-testlib/src/com/google/common/collect/testing/testers/MapClearTester.java b/guava-testlib/src/com/google/common/collect/testing/testers/MapClearTester.java
index 2f341ff..302df11 100644
--- a/guava-testlib/src/com/google/common/collect/testing/testers/MapClearTester.java
+++ b/guava-testlib/src/com/google/common/collect/testing/testers/MapClearTester.java
@@ -16,20 +16,13 @@
package com.google.common.collect.testing.testers;
-import static com.google.common.collect.testing.features.CollectionSize.SEVERAL;
import static com.google.common.collect.testing.features.CollectionSize.ZERO;
-import static com.google.common.collect.testing.features.MapFeature.FAILS_FAST_ON_CONCURRENT_MODIFICATION;
-import static com.google.common.collect.testing.features.MapFeature.SUPPORTS_REMOVE;
+import static com.google.common.collect.testing.features.MapFeature.SUPPORTS_CLEAR;
-import com.google.common.annotations.GwtCompatible;
import com.google.common.collect.testing.AbstractMapTester;
import com.google.common.collect.testing.features.CollectionSize;
import com.google.common.collect.testing.features.MapFeature;
-import java.util.ConcurrentModificationException;
-import java.util.Iterator;
-import java.util.Map.Entry;
-
/**
* A generic JUnit test which tests {@code clear()} operations on a map.
* Can't be invoked directly; please see
@@ -40,58 +33,15 @@ import java.util.Map.Entry;
* @author George van den Driessche
* @author Chris Povirk
*/
-@GwtCompatible
public class MapClearTester<K, V> extends AbstractMapTester<K, V> {
- @MapFeature.Require(SUPPORTS_REMOVE)
+ @MapFeature.Require(SUPPORTS_CLEAR)
public void testClear() {
getMap().clear();
assertTrue("After clear(), a map should be empty.",
getMap().isEmpty());
}
- @MapFeature.Require({FAILS_FAST_ON_CONCURRENT_MODIFICATION,
- SUPPORTS_REMOVE})
- @CollectionSize.Require(SEVERAL)
- public void testClearConcurrentWithEntrySetIteration() {
- try {
- Iterator<Entry<K, V>> iterator = getMap().entrySet().iterator();
- getMap().clear();
- iterator.next();
- fail("Expected ConcurrentModificationException");
- } catch (ConcurrentModificationException expected) {
- // success
- }
- }
-
- @MapFeature.Require({FAILS_FAST_ON_CONCURRENT_MODIFICATION,
- SUPPORTS_REMOVE})
- @CollectionSize.Require(SEVERAL)
- public void testClearConcurrentWithKeySetIteration() {
- try {
- Iterator<K> iterator = getMap().keySet().iterator();
- getMap().clear();
- iterator.next();
- fail("Expected ConcurrentModificationException");
- } catch (ConcurrentModificationException expected) {
- // success
- }
- }
-
- @MapFeature.Require({FAILS_FAST_ON_CONCURRENT_MODIFICATION,
- SUPPORTS_REMOVE})
- @CollectionSize.Require(SEVERAL)
- public void testClearConcurrentWithValuesIteration() {
- try {
- Iterator<V> iterator = getMap().values().iterator();
- getMap().clear();
- iterator.next();
- fail("Expected ConcurrentModificationException");
- } catch (ConcurrentModificationException expected) {
- // success
- }
- }
-
- @MapFeature.Require(absent = SUPPORTS_REMOVE)
+ @MapFeature.Require(absent = SUPPORTS_CLEAR)
@CollectionSize.Require(absent = ZERO)
public void testClear_unsupported() {
try {
@@ -103,7 +53,7 @@ public class MapClearTester<K, V> extends AbstractMapTester<K, V> {
expectUnchanged();
}
- @MapFeature.Require(absent = SUPPORTS_REMOVE)
+ @MapFeature.Require(absent = SUPPORTS_CLEAR)
@CollectionSize.Require(ZERO)
public void testClear_unsupportedByEmptyCollection() {
try {