Interface UnmodifiableMapTests.RemoveTests<K,V>
-
- Type Parameters:
K
- The key type of the map to test.V
- The value type of the map to test.
- All Superinterfaces:
MapTests<K,V>
,UnmodifiableMapTests<K,V>
- Enclosing interface:
- UnmodifiableMapTests<K,V>
@DisplayName("remove(Object)") public static interface UnmodifiableMapTests.RemoveTests<K,V> extends UnmodifiableMapTests<K,V>
Contains tests forMap.remove(Object)
for unmodifiable maps.- Author:
- Rob Spoor
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.github.robtimus.junit.support.test.collections.MapTests
MapTests.ContainsKeyTests<K,V>, MapTests.ContainsValueTests<K,V>, MapTests.EqualsArgumentsProvider, MapTests.EqualsTests<K,V>, MapTests.ForEachTests<K,V>, MapTests.GetOrDefaultTests<K,V>, MapTests.GetTests<K,V>, MapTests.HashCodeTests<K,V>, MapTests.RemoveArgumentsProvider, MapTests.RemoveExactValueArgumentsProvider
-
Nested classes/interfaces inherited from interface com.github.robtimus.junit.support.test.collections.UnmodifiableMapTests
UnmodifiableMapTests.ClearTests<K,V>, UnmodifiableMapTests.ComputeIfAbsentTests<K,V>, UnmodifiableMapTests.ComputeIfPresentTests<K,V>, UnmodifiableMapTests.ComputeTests<K,V>, UnmodifiableMapTests.EntrySetTests<K,V>, UnmodifiableMapTests.KeySetTests<K,V>, UnmodifiableMapTests.MergeTests<K,V>, UnmodifiableMapTests.PutAllTests<K,V>, UnmodifiableMapTests.PutIfAbsentTests<K,V>, UnmodifiableMapTests.PutTests<K,V>, UnmodifiableMapTests.RemoveExactValueTests<K,V>, UnmodifiableMapTests.RemoveTests<K,V>, UnmodifiableMapTests.ReplaceAllTests<K,V>, UnmodifiableMapTests.ReplaceExactValueTests<K,V>, UnmodifiableMapTests.ReplaceTests<K,V>, UnmodifiableMapTests.ValuesTests<K,V>
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
testRemoveContainedElements()
default void
testRemoveIncompatibleObject()
default void
testRemoveNonContainedElements()
default void
testRemoveNull()
-
Methods inherited from interface com.github.robtimus.junit.support.test.collections.MapTests
expectedEntries, map, nonContainedEntries
-
-
-
-
Method Detail
-
testRemoveContainedElements
@Test @DisplayName("remove(Object) with contained elements") default void testRemoveContainedElements()
-
testRemoveNonContainedElements
@Test @DisplayName("remove(Object) with non-contained elements") default void testRemoveNonContainedElements()
-
testRemoveNull
@Test @DisplayName("remove(Object) with null") default void testRemoveNull()
-
testRemoveIncompatibleObject
@Test @DisplayName("remove(Object) with an incompatible object") default void testRemoveIncompatibleObject()
-
-