Class ListListIteratorTester<E extends @Nullable Object>

All Implemented Interfaces:
junit.framework.Test

@GwtCompatible(emulated=true) @NullMarked public class ListListIteratorTester<E extends @Nullable Object> extends AbstractListTester<E>
A generic JUnit test which tests listIterator operations on a list. Can't be invoked directly; please see ListTestSuiteBuilder.
Author:
Chris Povirk, Kevin Bourrillion
  • Constructor Details

    • ListListIteratorTester

      public ListListIteratorTester()
  • Method Details

    • testListIterator_unmodifiable

      public void testListIterator_unmodifiable()
    • testListIterator_fullyModifiable

      public void testListIterator_fullyModifiable()
    • testListIterator_tooLow

      public void testListIterator_tooLow()
    • testListIterator_tooHigh

      public void testListIterator_tooHigh()
    • testListIterator_atSize

      public void testListIterator_atSize()
    • getListIteratorFullyModifiableMethod

      @GwtIncompatible public static Method getListIteratorFullyModifiableMethod()
      Returns the Method instance for testListIterator_fullyModifiable() so that tests of CopyOnWriteArraySet can suppress it with FeatureSpecificTestSuiteBuilder.suppressing() until JDK-6570575 is fixed.
    • getListIteratorUnmodifiableMethod

      @GwtIncompatible public static Method getListIteratorUnmodifiableMethod()
      Returns the Method instance for testListIterator_unmodifiable() so that it can be suppressed in GWT tests.