| AbstractListIndexOfTester<E> |
|
| AbstractListTester<E> |
Base class for list testers.
|
| AbstractQueueTester<E> |
Base class for queue collection tests.
|
| AbstractSetTester<E> |
|
| CollectionAddAllTester<E> |
A generic JUnit test which tests addAll operations on a collection.
|
| CollectionAddTester<E> |
A generic JUnit test which tests add operations on a collection.
|
| CollectionClearTester<E> |
A generic JUnit test which tests clear() operations on a collection.
|
| CollectionContainsAllTester<E> |
A generic JUnit test which tests containsAll() operations on a collection.
|
| CollectionContainsTester<E> |
A generic JUnit test which tests contains() operations on a collection.
|
| CollectionCreationTester<E> |
A generic JUnit test which tests creation (typically through a constructor or static factory
method) of a collection.
|
| CollectionEqualsTester<E> |
|
| CollectionForEachTester<E> |
A generic JUnit test which tests forEach operations on a collection.
|
| CollectionIsEmptyTester<E> |
A generic JUnit test which tests isEmpty() operations on a collection.
|
| CollectionIteratorTester<E> |
A generic JUnit test which tests iterator operations on a collection.
|
| CollectionRemoveAllTester<E> |
A generic JUnit test which tests removeAll operations on a collection.
|
| CollectionRemoveIfTester<E> |
|
| CollectionRemoveTester<E> |
A generic JUnit test which tests remove operations on a collection.
|
| CollectionRetainAllTester<E> |
A generic JUnit test which tests retainAll operations on a collection.
|
| CollectionSerializationEqualTester<E> |
Basic reserialization test for collection types that must preserve equals() behavior when
reserialized.
|
| CollectionSerializationTester<E> |
Basic reserialization test for collections.
|
| CollectionSizeTester<E> |
A generic JUnit test which tests size() operations on a collection.
|
| CollectionSpliteratorTester<E> |
A generic JUnit test which tests spliterator operations on a collection.
|
| CollectionStreamTester<E> |
A generic JUnit test which tests stream operations on a collection.
|
| CollectionToArrayTester<E> |
A generic JUnit test which tests toArray() operations on a collection.
|
| CollectionToStringTester<E> |
A generic JUnit test which tests toString() operations on a collection.
|
| ConcurrentMapPutIfAbsentTester<K,V> |
A generic JUnit test which tests putIfAbsent operations on a concurrent map.
|
| ConcurrentMapRemoveTester<K,V> |
|
| ConcurrentMapReplaceEntryTester<K,V> |
A generic JUnit test which tests replace(K, V, V) operations on a concurrent map.
|
| ConcurrentMapReplaceTester<K,V> |
A generic JUnit test which tests replace(K, V) operations on a concurrent map.
|
| ListAddAllAtIndexTester<E> |
A generic JUnit test which tests addAll(int, Collection) operations on a list.
|
| ListAddAllTester<E> |
A generic JUnit test which tests addAll(Collection) operations on a list.
|
| ListAddAtIndexTester<E> |
A generic JUnit test which tests add(int, Object) operations on a list.
|
| ListAddTester<E> |
A generic JUnit test which tests add(Object) operations on a list.
|
| ListCreationTester<E> |
A generic JUnit test which tests creation (typically through a constructor or static factory
method) of a list.
|
| ListEqualsTester<E> |
|
| ListGetTester<E> |
A generic JUnit test which tests get() operations on a list.
|
| ListHashCodeTester<E> |
|
| ListIndexOfTester<E> |
A generic JUnit test which tests indexOf() operations on a list.
|
| ListLastIndexOfTester<E> |
A generic JUnit test which tests lastIndexOf() operations on a list.
|
| ListListIteratorTester<E> |
A generic JUnit test which tests listIterator operations on a list.
|
| ListRemoveAllTester<E> |
A generic JUnit test which tests removeAll operations on a list.
|
| ListRemoveAtIndexTester<E> |
A generic JUnit test which tests remove(int) operations on a list.
|
| ListRemoveTester<E> |
A generic JUnit test which tests remove(Object) operations on a list.
|
| ListReplaceAllTester<E> |
|
| ListRetainAllTester<E> |
A generic JUnit test which tests retainAll operations on a list.
|
| ListSetTester<E> |
A generic JUnit test which tests set() operations on a list.
|
| ListSubListTester<E> |
A generic JUnit test which tests subList() operations on a list.
|
| ListToArrayTester<E> |
A generic JUnit test which tests toArray() operations on a list.
|
| MapClearTester<K,V> |
A generic JUnit test which tests clear() operations on a map.
|
| MapComputeIfAbsentTester<K,V> |
|
| MapComputeIfPresentTester<K,V> |
|
| MapComputeTester<K,V> |
|
| MapContainsKeyTester<K,V> |
A generic JUnit test which tests containsKey() operations on a map.
|
| MapContainsValueTester<K,V> |
A generic JUnit test which tests containsValue() operations on a map.
|
| MapCreationTester<K,V> |
A generic JUnit test which tests creation (typically through a constructor or static factory
method) of a map.
|
| MapEntrySetTester<K,V> |
|
| MapEqualsTester<K,V> |
|
| MapForEachTester<K,V> |
|
| MapGetOrDefaultTester<K,V> |
|
| MapGetTester<K,V> |
A generic JUnit test which tests get operations on a map.
|
| MapHashCodeTester<K,V> |
|
| MapIsEmptyTester<K,V> |
A generic JUnit test which tests isEmpty() operations on a map.
|
| MapMergeTester<K,V> |
|
| MapPutAllTester<K,V> |
A generic JUnit test which tests putAll operations on a map.
|
| MapPutIfAbsentTester<K,V> |
|
| MapPutTester<K,V> |
A generic JUnit test which tests put operations on a map.
|
| MapRemoveEntryTester<K,V> |
|
| MapRemoveTester<K,V> |
A generic JUnit test which tests remove operations on a map.
|
| MapReplaceAllTester<K,V> |
A generic JUnit test which tests replaceAll() operations on a map.
|
| MapReplaceEntryTester<K,V> |
|
| MapReplaceTester<K,V> |
|
| MapSerializationTester<K,V> |
Basic serialization test for maps.
|
| MapSizeTester<K,V> |
A generic JUnit test which tests size() operations on a map.
|
| MapToStringTester<K,V> |
A generic JUnit test which tests toString() operations on a map.
|
| NavigableMapNavigationTester<K,V> |
A generic JUnit test which tests operations on a NavigableMap.
|
| NavigableSetNavigationTester<E> |
A generic JUnit test which tests operations on a NavigableSet.
|
| QueueElementTester<E> |
A generic JUnit test which tests element() operations on a queue.
|
| QueueOfferTester<E> |
A generic JUnit test which tests offer operations on a queue.
|
| QueuePeekTester<E> |
A generic JUnit test which tests peek() operations on a queue.
|
| QueuePollTester<E> |
A generic JUnit test which tests poll() operations on a queue.
|
| QueueRemoveTester<E> |
A generic JUnit test which tests remove() operations on a queue.
|
| SetAddAllTester<E> |
A generic JUnit test which tests addAll operations on a set.
|
| SetAddTester<E> |
A generic JUnit test which tests add operations on a set.
|
| SetCreationTester<E> |
A generic JUnit test which tests creation (typically through a constructor or static factory
method) of a set.
|
| SetEqualsTester<E> |
|
| SetHashCodeTester<E> |
|
| SetRemoveTester<E> |
A generic JUnit test which tests remove operations on a set.
|
| SortedMapNavigationTester<K,V> |
A generic JUnit test which tests operations on a SortedMap.
|
| SortedSetNavigationTester<E> |
A generic JUnit test which tests operations on a SortedSet.
|