Interface UnmodifiableMapTests.ComputeIfPresentTests<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>
- Enclosing interface:
- UnmodifiableMapTests<K,V>
@DisplayName("computeIfPresent(Object, BiFunction)") public static interface UnmodifiableMapTests.ComputeIfPresentTests<K,V> extends MapTests<K,V>
Contains tests forMap.computeIfPresent(Object, BiFunction)
for unmodifiable maps.- Author:
- Rob Spoor
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.github.robtimus.junit.support.test.collections.MapTests
MapTests.ClearTests<K,V>, MapTests.ComputeIfAbsentTests<K,V>, MapTests.ComputeIfPresentTests<K,V>, MapTests.ComputeTests<K,V>, MapTests.ContainsKeyTests<K,V>, MapTests.ContainsValueTests<K,V>, MapTests.EntrySetTests<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.KeySetTests<K,V>, MapTests.MergeTests<K,V>, MapTests.PutAllTests<K,V>, MapTests.PutIfAbsentTests<K,V>, MapTests.PutTests<K,V>, MapTests.RemoveArgumentsProvider, MapTests.RemoveExactValueArgumentsProvider, MapTests.RemoveExactValueTests<K,V>, MapTests.RemoveTests<K,V>, MapTests.ReplaceAllTests<K,V>, MapTests.ReplaceExactValueTests<K,V>, MapTests.ReplaceTests<K,V>, MapTests.ValuesTests<K,V>
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
testComputeIfPresent()
default void
testComputeIfPresentWithFunctionReturningNull()
default void
testComputeIfPresentWithNullFunction()
default void
testComputeIfPresentWithThrowingFunction()
-
Methods inherited from interface com.github.robtimus.junit.support.test.collections.MapTests
expectedEntries, map, nonContainedEntries
-
-
-
-
Method Detail
-
testComputeIfPresent
@Test @DisplayName("computeIfPresent(Object, BiFunction)") default void testComputeIfPresent()
-
testComputeIfPresentWithFunctionReturningNull
@Test @DisplayName("computeIfPresent(Object, BiFunction) with function returning null") default void testComputeIfPresentWithFunctionReturningNull()
-
testComputeIfPresentWithThrowingFunction
@Test @DisplayName("computeIfPresent(Object, BiFunction) with throwing function") default void testComputeIfPresentWithThrowingFunction()
-
testComputeIfPresentWithNullFunction
@Test @DisplayName("computeIfPresent(Object, BiFunction) with null function") default void testComputeIfPresentWithNullFunction()
-
-