Class BiMapInverseTester<K,V>
- java.lang.Object
-
- junit.framework.Assert
-
- junit.framework.TestCase
-
- com.google.common.collect.testing.AbstractTester<OneSizeTestContainerGenerator<C,E>>
-
- com.google.common.collect.testing.AbstractContainerTester<java.util.Map<K,V>,java.util.Map.Entry<K,V>>
-
- com.google.common.collect.testing.AbstractMapTester<K,V>
-
- com.google.common.collect.testing.google.AbstractBiMapTester<K,V>
-
- com.google.common.collect.testing.google.BiMapInverseTester<K,V>
-
- All Implemented Interfaces:
junit.framework.Test
@GwtCompatible(emulated=true) public class BiMapInverseTester<K,V> extends AbstractBiMapTester<K,V>
Tests for theinverse
view of a BiMap.This assumes that
bimap.inverse().inverse() == bimap
, which is not technically required but is fulfilled by all current implementations.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.google.common.collect.testing.AbstractContainerTester
AbstractContainerTester.ArrayWithDuplicate<E>
-
-
Field Summary
-
Fields inherited from class com.google.common.collect.testing.AbstractContainerTester
container, samples
-
-
Constructor Summary
Constructors Constructor Description BiMapInverseTester()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.util.List<java.lang.reflect.Method>
getInverseSameAfterSerializingMethods()
ReturnsMethod
instances for the tests that assume that the inverse will be the same after serialization.void
testInverseSame()
void
testInverseSerialization()
-
Methods inherited from class com.google.common.collect.testing.google.AbstractBiMapTester
expectContents, expectMissing, getMap
-
Methods inherited from class com.google.common.collect.testing.AbstractMapTester
actualContents, createArrayWithNullKey, createArrayWithNullValue, createDisjointCollection, entry, expectMissingKeys, expectMissingValues, expectNullKeyMissingWhenNullKeysUnsupported, expectNullValueMissingWhenNullValuesUnsupported, expectReplacement, get, getKeyForNullValue, getNumEntries, getSampleEntries, getSampleEntries, getValueForNullKey, initMapWithNullKey, initMapWithNullValue, k0, k1, k2, k3, k4, resetMap, resetMap, setUp, v0, v1, v2, v3, v4
-
Methods inherited from class com.google.common.collect.testing.AbstractContainerTester
createArrayWithDuplicateElement, createOrderedArray, createSamplesArray, e0, e1, e2, e3, e4, emptyCollection, expectAdded, expectAdded, expectAdded, expectContents, expectUnchanged, getNullLocation, getNumElements, getOrderedElements, getSampleElements, getSampleElements, resetContainer, resetContainer
-
Methods inherited from class com.google.common.collect.testing.AbstractTester
getName, getSubjectGenerator, getTestMethodName, init, init, tearDown
-
Methods inherited from class junit.framework.TestCase
assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertTrue, assertTrue, countTestCases, createResult, fail, fail, failNotEquals, failNotSame, failSame, format, run, run, runBare, runTest, setName, toString
-
-
-
-
Method Detail
-
testInverseSame
public void testInverseSame()
-
testInverseSerialization
public void testInverseSerialization()
-
getInverseSameAfterSerializingMethods
@GwtIncompatible public static java.util.List<java.lang.reflect.Method> getInverseSameAfterSerializingMethods()
ReturnsMethod
instances for the tests that assume that the inverse will be the same after serialization.
-
-