aboutsummaryrefslogtreecommitdiffstats
path: root/guava-testlib/src/com/google/common/collect/testing/google/MultimapContainsValueTester.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava-testlib/src/com/google/common/collect/testing/google/MultimapContainsValueTester.java')
-rw-r--r--guava-testlib/src/com/google/common/collect/testing/google/MultimapContainsValueTester.java66
1 files changed, 0 insertions, 66 deletions
diff --git a/guava-testlib/src/com/google/common/collect/testing/google/MultimapContainsValueTester.java b/guava-testlib/src/com/google/common/collect/testing/google/MultimapContainsValueTester.java
deleted file mode 100644
index 4b0d51a..0000000
--- a/guava-testlib/src/com/google/common/collect/testing/google/MultimapContainsValueTester.java
+++ /dev/null
@@ -1,66 +0,0 @@
-/*
- * Copyright (C) 2012 The Guava Authors
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.google.common.collect.testing.google;
-
-import static com.google.common.collect.testing.features.CollectionSize.ZERO;
-import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_QUERIES;
-import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_VALUES;
-
-import com.google.common.annotations.GwtCompatible;
-import com.google.common.collect.Multimap;
-import com.google.common.collect.testing.features.CollectionSize;
-import com.google.common.collect.testing.features.MapFeature;
-
-/**
- * Tester for {@link Multimap#containsValue}.
- *
- * @author Louis Wasserman
- */
-@GwtCompatible
-public class MultimapContainsValueTester<K, V>
- extends AbstractMultimapTester<K, V, Multimap<K, V>> {
- @CollectionSize.Require(absent = ZERO)
- public void testContainsValueYes() {
- assertTrue(multimap().containsValue(sampleValues().e0));
- }
-
- public void testContainsValueNo() {
- assertFalse(multimap().containsValue(sampleValues().e3));
- }
-
- @MapFeature.Require(ALLOWS_NULL_VALUES)
- @CollectionSize.Require(absent = ZERO)
- public void testContainsNullValueYes() {
- initMultimapWithNullValue();
- assertTrue(multimap().containsValue(null));
- }
-
- @MapFeature.Require(ALLOWS_NULL_QUERIES)
- public void testContainsNullValueNo() {
- assertFalse(multimap().containsValue(null));
- }
-
- @MapFeature.Require(absent = ALLOWS_NULL_QUERIES)
- public void testContainsNullValueFails() {
- try {
- multimap().containsValue(null);
- fail("Expected NullPointerException");
- } catch (NullPointerException expected) {
- // success
- }
- }
-}