Class MapPutTester<K,V>
java.lang.Object
junit.framework.Assert
junit.framework.TestCase
com.google.common.collect.testing.AbstractTester<OneSizeTestContainerGenerator<Map<K,V>, Map.Entry<K,V>>>
com.google.common.collect.testing.AbstractContainerTester<Map<K,V>, Map.Entry<K,V>>
com.google.common.collect.testing.AbstractMapTester<K,V>
com.google.common.collect.testing.testers.MapPutTester<K,V>
- All Implemented Interfaces:
junit.framework.Test
A generic JUnit test which tests
put
operations on a map. Can't be invoked directly;
please see MapTestSuiteBuilder
.- Author:
- Chris Povirk, Kevin Bourrillion
-
Nested Class Summary
Nested classes/interfaces inherited from class com.google.common.collect.testing.AbstractContainerTester
AbstractContainerTester.ArrayWithDuplicate<E extends @Nullable Object>
-
Field Summary
Fields inherited from class com.google.common.collect.testing.AbstractContainerTester
container, samples
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Method
Returns theMethod
instance fortestPut_nullKeyUnsupported()
so that tests ofTreeMap
can suppress it withFeatureSpecificTestSuiteBuilder.suppressing()
until JDK-5045147 is fixed.void
setUp()
void
void
void
void
void
void
void
void
void
void
void
void
void
void
void
void
void
void
Methods inherited from class com.google.common.collect.testing.AbstractMapTester
actualContents, createArrayWithNullKey, createArrayWithNullValue, createDisjointCollection, entry, expectContents, expectMissing, expectMissingKeys, expectMissingValues, expectNullKeyMissingWhenNullKeysUnsupported, expectNullValueMissingWhenNullValuesUnsupported, expectReplacement, get, getKeyForNullValue, getMap, getNumEntries, getSampleEntries, getSampleEntries, getValueForNullKey, initMapWithNullKey, initMapWithNullValue, k0, k1, k2, k3, k4, resetMap, resetMap, 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
assertNull, 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, assertSame, assertSame, assertTrue, assertTrue, countTestCases, createResult, fail, fail, failNotEquals, failNotSame, failSame, format, run, run, runBare, runTest, setName, toString
-
Constructor Details
-
MapPutTester
public MapPutTester()
-
-
Method Details
-
setUp
-
testPut_supportedPresent
public void testPut_supportedPresent() -
testPut_supportedNotPresent
public void testPut_supportedNotPresent() -
testPutAbsentConcurrentWithEntrySetIteration
public void testPutAbsentConcurrentWithEntrySetIteration() -
testPutAbsentConcurrentWithKeySetIteration
public void testPutAbsentConcurrentWithKeySetIteration() -
testPutAbsentConcurrentWithValueIteration
public void testPutAbsentConcurrentWithValueIteration() -
testPut_unsupportedNotPresent
public void testPut_unsupportedNotPresent() -
testPut_unsupportedPresentExistingValue
public void testPut_unsupportedPresentExistingValue() -
testPut_unsupportedPresentDifferentValue
public void testPut_unsupportedPresentDifferentValue() -
testPut_nullKeySupportedNotPresent
public void testPut_nullKeySupportedNotPresent() -
testPut_nullKeySupportedPresent
public void testPut_nullKeySupportedPresent() -
testPut_nullKeyUnsupported
public void testPut_nullKeyUnsupported() -
testPut_nullValueSupported
public void testPut_nullValueSupported() -
testPut_nullValueUnsupported
public void testPut_nullValueUnsupported() -
testPut_replaceWithNullValueSupported
public void testPut_replaceWithNullValueSupported() -
testPut_replaceWithNullValueUnsupported
public void testPut_replaceWithNullValueUnsupported() -
testPut_replaceNullValueWithNullSupported
public void testPut_replaceNullValueWithNullSupported() -
testPut_replaceNullValueWithNonNullSupported
public void testPut_replaceNullValueWithNonNullSupported() -
testPut_nullKeyAndValueSupported
public void testPut_nullKeyAndValueSupported() -
getPutNullKeyUnsupportedMethod
Returns theMethod
instance fortestPut_nullKeyUnsupported()
so that tests ofTreeMap
can suppress it withFeatureSpecificTestSuiteBuilder.suppressing()
until JDK-5045147 is fixed.
-