aboutsummaryrefslogtreecommitdiff
path: root/guava-testlib/src/com/google/common/collect/testing/google/ListMultimapPutAllTester.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava-testlib/src/com/google/common/collect/testing/google/ListMultimapPutAllTester.java')
-rw-r--r--guava-testlib/src/com/google/common/collect/testing/google/ListMultimapPutAllTester.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/guava-testlib/src/com/google/common/collect/testing/google/ListMultimapPutAllTester.java b/guava-testlib/src/com/google/common/collect/testing/google/ListMultimapPutAllTester.java
index 243361680..9a3c96693 100644
--- a/guava-testlib/src/com/google/common/collect/testing/google/ListMultimapPutAllTester.java
+++ b/guava-testlib/src/com/google/common/collect/testing/google/ListMultimapPutAllTester.java
@@ -20,9 +20,9 @@ import static com.google.common.collect.testing.features.MapFeature.SUPPORTS_PUT
import com.google.common.annotations.GwtCompatible;
import com.google.common.collect.ListMultimap;
import com.google.common.collect.testing.features.MapFeature;
+
import java.util.Arrays;
import java.util.List;
-import org.junit.Ignore;
/**
* Testers for {@link ListMultimap#putAll(Object, Iterable)}.
@@ -30,12 +30,14 @@ import org.junit.Ignore;
* @author Louis Wasserman
*/
@GwtCompatible
-@Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
public class ListMultimapPutAllTester<K, V> extends AbstractListMultimapTester<K, V> {
@MapFeature.Require(SUPPORTS_PUT)
public void testPutAllAddsAtEndInOrder() {
@SuppressWarnings("unchecked")
- List<V> values = Arrays.asList(v3(), v1(), v4());
+ List<V> values = Arrays.asList(
+ sampleValues().e3,
+ sampleValues().e1,
+ sampleValues().e4);
for (K k : sampleKeys()) {
resetContainer();