Interface UnmodifiableCollectionTests.AddAllTests<T>
-
- Type Parameters:
T
- The element type of the collection to test.
- All Superinterfaces:
CollectionTests<T>
,IterableTests<T>
,UnmodifiableCollectionTests<T>
- All Known Subinterfaces:
MapTests.EntrySetTests.AddAllTests<K,V>
,MapTests.KeySetTests.AddAllTests<K,V>
,MapTests.ValuesTests.AddAllTests<K,V>
,UnmodifiableMapTests.EntrySetTests.AddAllTests<K,V>
,UnmodifiableMapTests.KeySetTests.AddAllTests<K,V>
,UnmodifiableMapTests.ValuesTests.AddAllTests<K,V>
- Enclosing interface:
- UnmodifiableCollectionTests<T>
@DisplayName("addAll(Collection)") public static interface UnmodifiableCollectionTests.AddAllTests<T> extends UnmodifiableCollectionTests<T>
Contains tests forCollection.addAll(Collection)
for unmodifiable collections.- Author:
- Rob Spoor
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.github.robtimus.junit.support.test.collections.CollectionTests
CollectionTests.ContainsAllTests<T>, CollectionTests.ContainsTests<T>, CollectionTests.RemoveAllArgumentsProvider, CollectionTests.RemoveArgumentsProvider, CollectionTests.RetainAllArgumentsProvider, CollectionTests.ToArrayTests<T>, CollectionTests.ToArrayWithGeneratorTests<T>, CollectionTests.ToObjectArrayTests<T>
-
Nested classes/interfaces inherited from interface com.github.robtimus.junit.support.test.collections.IterableTests
IterableTests.ForEachTests<T>
-
Nested classes/interfaces inherited from interface com.github.robtimus.junit.support.test.collections.UnmodifiableCollectionTests
UnmodifiableCollectionTests.AddAllTests<T>, UnmodifiableCollectionTests.AddTests<T>, UnmodifiableCollectionTests.ClearTests<T>, UnmodifiableCollectionTests.RemoveAllTests<T>, UnmodifiableCollectionTests.RemoveIfTests<T>, UnmodifiableCollectionTests.RemoveTests<T>, UnmodifiableCollectionTests.RetainAllTests<T>
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
testAddAllWithContainedElements()
default void
testAddAllWithEmptyCollection()
default void
testAddAllWithNonContainedElements()
default void
testAddAllWithNull()
default void
testAddAllWithNullElement()
-
Methods inherited from interface com.github.robtimus.junit.support.test.collections.CollectionTests
iterable, nonContainedElements
-
Methods inherited from interface com.github.robtimus.junit.support.test.collections.IterableTests
expectedElements, fixedOrder
-
-
-
-
Method Detail
-
testAddAllWithContainedElements
@Test @DisplayName("addAll(Collection) with contained elements") default void testAddAllWithContainedElements()
-
testAddAllWithNonContainedElements
@Test @DisplayName("addAll(Collection) with non-contained elements") default void testAddAllWithNonContainedElements()
-
testAddAllWithEmptyCollection
@Test @DisplayName("addAll(Collection) with an empty collection") default void testAddAllWithEmptyCollection()
-
testAddAllWithNull
@Test @DisplayName("addAll(Collection) with null") default void testAddAllWithNull()
-
testAddAllWithNullElement
@Test @DisplayName("addAll(Collection) with null element") default void testAddAllWithNullElement()
-
-