Normalize end of comments

This commit is contained in:
Gary Gregory 2024-01-20 10:45:59 -05:00
parent 190815d4e1
commit 47c5862fb0
104 changed files with 0 additions and 108 deletions

View File

@ -97,7 +97,6 @@ public final class ArrayCountingBloomFilter implements CountingBloomFilter {
* Constructs an empty counting Bloom filter with the specified shape.
*
* @param shape the shape of the filter
*
*/
public ArrayCountingBloomFilter(final Shape shape) {
Objects.requireNonNull(shape, "shape");

View File

@ -184,7 +184,6 @@ public class NodeCachingLinkedList<E> extends AbstractLinkedList<E> implements S
/**
* Removes all the nodes from the list, storing as many as required in the
* cache for reuse.
*
*/
@Override
protected void removeAllNodes() {

View File

@ -37,7 +37,6 @@ import org.junit.jupiter.api.Test;
/**
* Tests the ClosureUtils class.
*
*/
public class ClosureUtilsTest {

View File

@ -35,7 +35,6 @@ import org.junit.jupiter.api.Test;
/**
* Tests the org.apache.commons.collections.FactoryUtils class.
*
*/
public class FactoryUtilsTest {

View File

@ -39,7 +39,6 @@ import org.junit.jupiter.api.Test;
/**
* Tests for FluentIterable.
*
*/
public class FluentIterableTest {

View File

@ -42,7 +42,6 @@ import org.junit.jupiter.api.Test;
/**
* Tests for IterableUtils.
*
*/
public class IterableUtilsTest {

View File

@ -33,7 +33,6 @@ import org.junit.jupiter.api.Test;
/**
* Tests for MultiMapUtils
*
*/
public class MultiMapUtilsTest {

View File

@ -44,7 +44,6 @@ import org.junit.jupiter.api.Test;
/**
* Tests the PredicateUtils class.
*
*/
@SuppressWarnings("boxing")
public class PredicateUtilsTest extends AbstractPredicateTest {

View File

@ -33,7 +33,6 @@ import org.junit.jupiter.api.Test;
/**
* Tests for {@link TransformedSplitMap}
*
*/
@SuppressWarnings("boxing")
public class SplitMapUtilsTest {

View File

@ -42,7 +42,6 @@ import org.junit.jupiter.api.Test;
/**
* Tests the TransformerUtils class.
*
*/
public class TransformerUtilsTest {

View File

@ -26,7 +26,6 @@ import org.apache.commons.collections4.SortedBag;
* Abstract test class for
* {@link org.apache.commons.collections4.SortedBag SortedBag}
* methods and contracts.
*
*/
public abstract class AbstractSortedBagTest<T> extends AbstractBagTest<T> {

View File

@ -34,7 +34,6 @@ import org.junit.jupiter.api.Test;
* <p>
* Note: This test is mainly for serialization support, the CollectionBag decorator
* is extensively used and tested in AbstractBagTest.
*
*/
public class CollectionBagTest<T> extends AbstractCollectionTest<T> {

View File

@ -34,7 +34,6 @@ import org.junit.jupiter.api.Test;
* <p>
* Note: This test is mainly for serialization support, the CollectionSortedBag decorator
* is extensively used and tested in AbstractSortedBagTest.
*
*/
public class CollectionSortedBagTest<T> extends AbstractCollectionTest<T> {

View File

@ -31,7 +31,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractBagTest} for exercising the {@link PredicatedBag}
* implementation.
*
*/
public class PredicatedBagTest<T> extends AbstractBagTest<T> {

View File

@ -30,7 +30,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractSortedBagTest} for exercising the {@link PredicatedSortedBag}
* implementation.
*
*/
public class PredicatedSortedBagTest<T> extends AbstractSortedBagTest<T> {

View File

@ -21,7 +21,6 @@ import org.apache.commons.collections4.Bag;
/**
* Extension of {@link AbstractBagTest} for exercising the {@link SynchronizedBag}
* implementation.
*
*/
public class SynchronizedBagTest<T> extends AbstractBagTest<T> {

View File

@ -28,7 +28,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractBagTest} for exercising the {@link TransformedBag}
* implementation.
*
*/
public class TransformedBagTest<T> extends AbstractBagTest<T> {

View File

@ -27,7 +27,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractSortedBagTest} for exercising the {@link TransformedSortedBag}
* implementation.
*
*/
public class TransformedSortedBagTest<T> extends AbstractSortedBagTest<T> {

View File

@ -30,7 +30,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractCollectionTest} for exercising the
* {@link UnmodifiableBag} implementation.
*
*/
public class UnmodifiableBagTest<E> extends AbstractBagTest<E> {

View File

@ -30,7 +30,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractCollectionTest} for exercising the
* {@link UnmodifiableSortedBag} implementation.
*
*/
public class UnmodifiableSortedBagTest<E> extends AbstractSortedBagTest<E> {

View File

@ -55,7 +55,6 @@ public class LayeredBloomFilterTest extends AbstractBloomFilterTest<LayeredBloom
/**
* A Consumer that cleans the list based on how long each filters has been in
* the list.
*
*/
static class CleanByTime implements Consumer<LinkedList<BloomFilter>> {
long elapsedTime;

View File

@ -34,7 +34,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractCollectionTest} for exercising the
* {@link CompositeCollection} implementation.
*
*/
public class CompositeCollectionTest<E> extends AbstractCollectionTest<E> {

View File

@ -32,7 +32,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractCollectionTest} for exercising the
* {@link IndexedCollection} implementation.
*
*/
@SuppressWarnings("boxing")
public class IndexedCollectionTest extends AbstractCollectionTest<String> {

View File

@ -32,7 +32,6 @@ import org.junit.jupiter.api.Test;
/**
* Tests the PredicatedCollection.Builder class.
*
*/
public class PredicatedCollectionBuilderTest {

View File

@ -31,7 +31,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractCollectionTest} for exercising the
* {@link PredicatedCollection} implementation.
*
*/
public class PredicatedCollectionTest<E> extends AbstractCollectionTest<E> {

View File

@ -23,7 +23,6 @@ import java.util.Collection;
/**
* Extension of {@link AbstractCollectionTest} for exercising the
* {@link SynchronizedCollection} implementation.
*
*/
public class SynchronizedCollectionTest<E> extends AbstractCollectionTest<E> {

View File

@ -33,7 +33,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractCollectionTest} for exercising the {@link TransformedCollection}
* implementation.
*
*/
public class TransformedCollectionTest extends AbstractCollectionTest<Object> {

View File

@ -31,7 +31,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractCollectionTest} for exercising the
* {@link UnmodifiableCollection} implementation.
*
*/
public class UnmodifiableCollectionTest<E> extends AbstractCollectionTest<E> {

View File

@ -27,7 +27,6 @@ import org.junit.jupiter.api.Test;
/**
* Base class for tests of AnyPredicate, AllPredicate, and OnePredicate.
*
*/
public abstract class AbstractAnyAllOnePredicateTest<T> extends AbstractCompositePredicateTest<T> {

View File

@ -29,7 +29,6 @@ import org.junit.jupiter.api.Test;
/**
* Base class for tests of composite predicates.
*
*/
public abstract class AbstractCompositePredicateTest<T> extends AbstractMockPredicateTest<T> {

View File

@ -30,7 +30,6 @@ import org.junit.jupiter.api.BeforeEach;
/**
* Base class for tests of predicates which delegate to other predicates when evaluating an object. This class
* provides methods to create and verify mock predicates to which to delegate.
*
*/
public abstract class AbstractMockPredicateTest<T> {
/**

View File

@ -28,7 +28,6 @@ import org.junit.jupiter.api.Test;
/**
* Tests the org.apache.commons.collections.functors.AllPredicate class.
*
*/
@SuppressWarnings("boxing")
public class AllPredicateTest extends AbstractAnyAllOnePredicateTest<Integer> {

View File

@ -35,7 +35,6 @@ import org.junit.jupiter.api.Test;
* Concrete subclasses must provide the iterator to be tested.
* They must also specify certain details of how the iterator operates by
* overriding the supportsXxx() methods if necessary.
*
*/
public abstract class AbstractIteratorTest<E> extends AbstractObjectTest {

View File

@ -35,7 +35,6 @@ import org.junit.jupiter.api.Test;
* Concrete subclasses must provide the list iterator to be tested.
* They must also specify certain details of how the list iterator operates by
* overriding the supportsXxx() methods if necessary.
*
*/
public abstract class AbstractListIteratorTest<E> extends AbstractIteratorTest<E> {

View File

@ -38,7 +38,6 @@ import org.junit.jupiter.api.Test;
* Concrete subclasses must provide the list iterator to be tested.
* They must also specify certain details of how the list iterator operates by
* overriding the supportsXxx() methods if necessary.
*
*/
public abstract class AbstractMapIteratorTest<K, V> extends AbstractIteratorTest<K> {

View File

@ -40,7 +40,6 @@ import org.junit.jupiter.api.Test;
* Concrete subclasses must provide the list iterator to be tested.
* They must also specify certain details of how the list iterator operates by
* overriding the supportsXxx() methods if necessary.
*
*/
public abstract class AbstractOrderedMapIteratorTest<K, V> extends AbstractMapIteratorTest<K, V> {

View File

@ -34,7 +34,6 @@ import org.junit.jupiter.api.Test;
/**
* Test class for PermutationIterator.
*
*/
public class PermutationIteratorTest extends AbstractIteratorTest<List<Character>> {

View File

@ -24,7 +24,6 @@ public final class ObjectToStringComparator implements Comparator<Object>, Seria
/**
* Singleton instance.
*
*/
public static final ObjectToStringComparator INSTANCE = new ObjectToStringComparator();

View File

@ -33,7 +33,6 @@ import org.junit.jupiter.api.Test;
* a new Map.Entry of the type being tested. Subclasses must also implement
* {@link #testConstructors()} to test the constructors of the Map.Entry
* type being tested.
*
*/
public abstract class AbstractMapEntryTest<K, V> {
@ -93,7 +92,6 @@ public abstract class AbstractMapEntryTest<K, V> {
/**
* Subclasses should provide tests for their constructors.
*
*/
public abstract void testConstructors();
@ -123,7 +121,6 @@ public abstract class AbstractMapEntryTest<K, V> {
* Subclasses should override this method to test the
* desired behavior of the class with respect to
* handling of self-references.
*
*/
@Test

View File

@ -29,7 +29,6 @@ import org.junit.jupiter.api.Test;
/**
* Test the DefaultKeyValue class.
*
*/
public class DefaultKeyValueTest<K, V> {

View File

@ -25,7 +25,6 @@ import org.junit.jupiter.api.Test;
/**
* Test the DefaultMapEntry class.
*
*/
public class DefaultMapEntryTest<K, V> extends AbstractMapEntryTest<K, V> {
@ -51,7 +50,6 @@ public class DefaultMapEntryTest<K, V> extends AbstractMapEntryTest<K, V> {
/**
* Subclasses should override this method.
*
*/
@Test
@Override

View File

@ -25,7 +25,6 @@ import org.junit.jupiter.api.Test;
/**
* Test the TiedMapEntry class.
*
*/
public class TiedMapEntryTest<K, V> extends AbstractMapEntryTest<K, V> {

View File

@ -28,7 +28,6 @@ import org.junit.jupiter.api.Test;
/**
* Test the UnmodifiableMapEntry class.
*
*/
public class UnmodifiableMapEntryTest<K, V> extends AbstractMapEntryTest<K, V> {
@ -69,7 +68,6 @@ public class UnmodifiableMapEntryTest<K, V> extends AbstractMapEntryTest<K, V> {
/**
* Subclasses should override this method.
*
*/
@Test
@Override

View File

@ -30,7 +30,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractListTest} for exercising the {@link FixedSizeList}
* implementation.
*
*/
public class FixedSizeListTest<E> extends AbstractListTest<E> {

View File

@ -33,7 +33,6 @@ import org.junit.jupiter.api.function.Executable;
/**
* Extension of {@link AbstractListTest} for exercising the {@link GrowthList}.
*
*/
public class GrowthListTest<E> extends AbstractListTest<E> {

View File

@ -32,7 +32,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractListTest} for exercising the
* {@link PredicatedList} implementation.
*
*/
public class PredicatedListTest<E> extends AbstractListTest<E> {

View File

@ -37,7 +37,6 @@ import org.junit.jupiter.api.Test;
/**
* JUnit tests.
*
*/
public class SetUniqueListTest<E> extends AbstractListTest<E> {

View File

@ -34,7 +34,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractListTest} for exercising the {@link TransformedList}
* implementation.
*
*/
public class TransformedListTest<E> extends AbstractListTest<E> {

View File

@ -28,7 +28,6 @@ import org.junit.jupiter.api.Test;
/**
* JUnit tests
*
*/
public class TreeListTest<E> extends AbstractListTest<E> {

View File

@ -30,7 +30,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractListTest} for exercising the
* {@link UnmodifiableList} implementation.
*
*/
public class UnmodifiableListTest<E> extends AbstractListTest<E> {

View File

@ -31,7 +31,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractMapTest} for exercising the
* {@link CompositeMap} implementation.
*
*/
public class CompositeMapTest<K, V> extends AbstractIterableMapTest<K, V> {

View File

@ -36,7 +36,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractMapTest} for exercising the
* {@link DefaultedMap} implementation.
*
*/
public class DefaultedMapTest<K, V> extends AbstractIterableMapTest<K, V> {

View File

@ -24,7 +24,6 @@ import org.apache.commons.collections4.IterableMap;
/**
* Extension of {@link AbstractMapTest} for exercising the {@link FixedSizeMap}
* implementation.
*
*/
public class FixedSizeMapTest<K, V> extends AbstractIterableMapTest<K, V> {

View File

@ -22,7 +22,6 @@ import java.util.TreeMap;
/**
* Extension of {@link AbstractSortedMapTest} for exercising the {@link FixedSizeSortedMap}
* implementation.
*
*/
public class FixedSizeSortedMapTest<K, V> extends AbstractSortedMapTest<K, V> {

View File

@ -32,7 +32,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractMapTest} for exercising the
* {@link LazyMap} implementation.
*
*/
@SuppressWarnings("boxing")
public class LazyMapTest<K, V> extends AbstractIterableMapTest<K, V> {

View File

@ -39,7 +39,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link LazyMapTest} for exercising the
* {@link LazySortedMap} implementation.
*
*/
@SuppressWarnings("boxing")
public class LazySortedMapTest<K, V> extends AbstractSortedMapTest<K, V> {

View File

@ -31,7 +31,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractOrderedMapTest} for exercising the {@link ListOrderedMap}
* implementation.
*
*/
public class ListOrderedMap2Test<K, V> extends AbstractOrderedMapTest<K, V> {

View File

@ -36,7 +36,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractOrderedMapTest} for exercising the {@link ListOrderedMap}
* implementation.
*
*/
public class ListOrderedMapTest<K, V> extends AbstractOrderedMapTest<K, V> {

View File

@ -44,7 +44,6 @@ import org.junit.jupiter.api.Test;
/**
* TestMultiValueMap.
*
*/
@Deprecated
public class MultiValueMapTest<K, V> extends AbstractObjectTest {

View File

@ -35,7 +35,6 @@ import org.junit.jupiter.api.Test;
/**
* JUnit tests.
*
*/
public class PassiveExpiringMapTest<K, V> extends AbstractMapTest<K, V> {

View File

@ -33,7 +33,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractMapTest} for exercising the
* {@link PredicatedMap} implementation.
*
*/
public class PredicatedMapTest<K, V> extends AbstractIterableMapTest<K, V> {

View File

@ -38,7 +38,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link PredicatedMapTest} for exercising the
* {@link PredicatedSortedMap} implementation.
*
*/
public class PredicatedSortedMapTest<K, V> extends AbstractSortedMapTest<K, V> {

View File

@ -34,7 +34,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractMapTest} for exercising the {@link TransformedMap}
* implementation.
*
*/
public class TransformedMapTest<K, V> extends AbstractIterableMapTest<K, V> {

View File

@ -34,7 +34,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractSortedMapTest} for exercising the {@link TransformedSortedMap}
* implementation.
*
*/
public class TransformedSortedMapTest<K, V> extends AbstractSortedMapTest<K, V> {

View File

@ -30,7 +30,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractMapTest} for exercising the
* {@link UnmodifiableMap} implementation.
*
*/
public class UnmodifiableMapTest<K, V> extends AbstractIterableMapTest<K, V> {

View File

@ -29,7 +29,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractOrderedMapTest} for exercising the
* {@link UnmodifiableOrderedMap} implementation.
*
*/
public class UnmodifiableOrderedMapTest<K, V> extends AbstractOrderedMapTest<K, V> {

View File

@ -29,7 +29,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractSortedMapTest} for exercising the
* {@link UnmodifiableSortedMap} implementation.
*
*/
public class UnmodifiableSortedMapTest<K, V> extends AbstractSortedMapTest<K, V> {

View File

@ -54,7 +54,6 @@ import org.junit.jupiter.api.Test;
* <p>
* To use, extend this class and implement the {@link #makeObject} method and if
* necessary override the {@link #makeFullMap()} method.
*
*/
public abstract class AbstractMultiValuedMapTest<K, V> extends AbstractObjectTest {

View File

@ -35,7 +35,6 @@ import org.junit.jupiter.api.Test;
/**
* Test ArrayListValuedHashMap
*
*/
public class ArrayListValuedHashMapTest<K, V> extends AbstractMultiValuedMapTest<K, V> {

View File

@ -33,7 +33,6 @@ import org.junit.jupiter.api.Test;
/**
* Test HashSetValuedHashMap
*
*/
public class HashSetValuedHashMapTest<K, V> extends AbstractMultiValuedMapTest<K, V> {

View File

@ -32,7 +32,6 @@ import org.junit.jupiter.api.Test;
/**
* Tests for TransformedMultiValuedMap
*
*/
public class TransformedMultiValuedMapTest<K, V> extends AbstractMultiValuedMapTest<K, V> {

View File

@ -38,7 +38,6 @@ import org.junit.jupiter.api.Test;
/**
* Tests for UnmodifiableMultiValuedMap
*
*/
public class UnmodifiableMultiValuedMapTest<K, V> extends AbstractMultiValuedMapTest<K, V> {

View File

@ -59,7 +59,6 @@ import org.junit.jupiter.api.Test;
* from AbstractCollectionTest, there are test methods that test the "normal" MultiSet
* interface (prefix testMultiSet). For MultiSet specific tests use the {@link #makeObject()} and
* {@link #makeFullCollection()} methods instead of {@link #resetEmpty()} and resetFull().
*
*/
public abstract class AbstractMultiSetTest<T> extends AbstractCollectionTest<T> {

View File

@ -21,7 +21,6 @@ import org.apache.commons.collections4.MultiSet;
/**
* Extension of {@link AbstractMultiSetTest} for exercising the
* {@link HashMultiSet} implementation.
*
*/
public class HashMultiSetTest<T> extends AbstractMultiSetTest<T> {

View File

@ -31,7 +31,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractMultiSetTest} for exercising the
* {@link PredicatedMultiSet} implementation.
*
*/
public class PredicatedMultiSetTest<T> extends AbstractMultiSetTest<T> {

View File

@ -21,7 +21,6 @@ import org.apache.commons.collections4.MultiSet;
/**
* Extension of {@link AbstractMultiSetTest} for exercising the
* {@link SynchronizedMultiSet} implementation.
*
*/
public class SynchronizedMultiSetTest<T> extends AbstractMultiSetTest<T> {

View File

@ -29,7 +29,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractMultiSetTest} for exercising the
* {@link UnmodifiableMultiSet} implementation.
*
*/
public class UnmodifiableMultiSetTest<E> extends AbstractMultiSetTest<E> {

View File

@ -44,7 +44,6 @@ import org.junit.jupiter.api.Test;
* you may still use this base set of cases. Simply override the
* test case (method) your {@link Queue} fails or override one of the
* protected methods from AbstractCollectionTest.
*
*/
public abstract class AbstractQueueTest<E> extends AbstractCollectionTest<E> {

View File

@ -36,7 +36,6 @@ import org.junit.jupiter.api.Test;
/**
* Test cases for CircularFifoQueue.
*
*/
public class CircularFifoQueueTest<E> extends AbstractQueueTest<E> {

View File

@ -33,7 +33,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link PredicatedCollectionTest} for exercising the
* {@link PredicatedQueue} implementation.
*
*/
public class PredicatedQueueTest<E> extends AbstractQueueTest<E> {

View File

@ -25,7 +25,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractQueueTest} for exercising the {@link SynchronizedQueue} implementation.
*
*/
public class SynchronizedQueueTest<T> extends AbstractQueueTest<T> {

View File

@ -33,7 +33,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractCollectionTest} for exercising the
* {@link TransformedQueue} implementation.
*
*/
public class TransformedQueueTest<E> extends AbstractQueueTest<E> {

View File

@ -32,7 +32,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractCollectionTest} for exercising the
* {@link UnmodifiableQueue} implementation.
*
*/
public class UnmodifiableQueueTest<E> extends AbstractQueueTest<E> {

View File

@ -31,7 +31,6 @@ import org.apache.commons.collections4.BulkTest;
* method. You may have to override other protected methods if your
* set is not modifiable, or if your set restricts what kinds of
* elements may be added; see {@link AbstractSetTest} for more details.
*
*/
public abstract class AbstractNavigableSetTest<E> extends AbstractSortedSetTest<E> {

View File

@ -41,7 +41,6 @@ import org.junit.jupiter.api.Test;
* method. You may have to override other protected methods if your
* set is not modifiable, or if your set restricts what kinds of
* elements may be added; see {@link AbstractCollectionTest} for more details.
*
*/
public abstract class AbstractSetTest<E> extends AbstractCollectionTest<E> {

View File

@ -31,7 +31,6 @@ import org.apache.commons.collections4.BulkTest;
* method. You may have to override other protected methods if your
* set is not modifiable, or if your set restricts what kinds of
* elements may be added; see {@link AbstractSetTest} for more details.
*
*/
public abstract class AbstractSortedSetTest<E> extends AbstractSetTest<E> {

View File

@ -32,7 +32,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractSetTest} for exercising the
* {@link CompositeSet} implementation.
*
*/
public class CompositeSetTest<E> extends AbstractSetTest<E> {

View File

@ -29,7 +29,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractSetTest} for exercising the {@link ListOrderedSet}
* implementation.
*
*/
public class ListOrderedSet2Test<E> extends AbstractSetTest<E> {

View File

@ -35,7 +35,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractSetTest} for exercising the
* {@link ListOrderedSet} implementation.
*
*/
public class ListOrderedSetTest<E>
extends AbstractSetTest<E> {

View File

@ -27,7 +27,6 @@ import org.junit.jupiter.api.Test;
/**
* JUnit test.
*
*/
public class MapBackedSet2Test<E> extends AbstractSetTest<E> {

View File

@ -22,7 +22,6 @@ import org.apache.commons.collections4.map.HashedMap;
/**
* JUnit test.
*
*/
public class MapBackedSetTest<E> extends AbstractSetTest<E> {

View File

@ -34,7 +34,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractNavigableSetTest} for exercising the
* {@link PredicatedNavigableSet} implementation.
*
*/
public class PredicatedNavigableSetTest<E> extends AbstractNavigableSetTest<E> {

View File

@ -30,7 +30,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractSetTest} for exercising the
* {@link PredicatedSet} implementation.
*
*/
public class PredicatedSetTest<E> extends AbstractSetTest<E> {

View File

@ -34,7 +34,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractSortedSetTest} for exercising the
* {@link PredicatedSortedSet} implementation.
*
*/
public class PredicatedSortedSetTest<E> extends AbstractSortedSetTest<E> {

View File

@ -32,7 +32,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractNavigableSetTest} for exercising the
* {@link TransformedNavigableSet} implementation.
*
*/
public class TransformedNavigableSetTest<E> extends AbstractNavigableSetTest<E> {

View File

@ -32,7 +32,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractSetTest} for exercising the {@link TransformedSet}
* implementation.
*
*/
public class TransformedSetTest<E> extends AbstractSetTest<E> {

View File

@ -32,7 +32,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractSortedSetTest} for exercising the {@link TransformedSortedSet}
* implementation.
*
*/
public class TransformedSortedSetTest<E> extends AbstractSortedSetTest<E> {

View File

@ -32,7 +32,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractNavigableSetTest} for exercising the
* {@link UnmodifiableNavigableSet} implementation.
*
*/
public class UnmodifiableNavigableSetTest<E> extends AbstractNavigableSetTest<E> {
protected UnmodifiableNavigableSet<E> set;

View File

@ -30,7 +30,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractSetTest} for exercising the
* {@link UnmodifiableSet} implementation.
*
*/
public class UnmodifiableSetTest<E> extends AbstractSetTest<E> {

View File

@ -33,7 +33,6 @@ import org.junit.jupiter.api.Test;
/**
* Extension of {@link AbstractSortedSetTest} for exercising the
* {@link UnmodifiableSortedSet} implementation.
*
*/
public class UnmodifiableSortedSetTest<E> extends AbstractSortedSetTest<E> {
protected UnmodifiableSortedSet<E> set;

Some files were not shown because too many files have changed in this diff Show More