Class TestsForListsInJavaUtil
- java.lang.Object
-
- com.google.common.collect.testing.TestsForListsInJavaUtil
-
@GwtIncompatible public class TestsForListsInJavaUtil extends java.lang.Object
Generates a test suite covering theList
implementations in thejava.util
package. Can be subclassed to specify tests that should be suppressed.
-
-
Constructor Summary
Constructors Constructor Description TestsForListsInJavaUtil()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description junit.framework.Test
allTests()
static junit.framework.Test
suite()
protected java.util.Collection<java.lang.reflect.Method>
suppressForAbstractList()
protected java.util.Collection<java.lang.reflect.Method>
suppressForAbstractSequentialList()
protected java.util.Collection<java.lang.reflect.Method>
suppressForArrayList()
protected java.util.Collection<java.lang.reflect.Method>
suppressForArraysAsList()
protected java.util.Collection<java.lang.reflect.Method>
suppressForCheckedList()
protected java.util.Collection<java.lang.reflect.Method>
suppressForCopyOnWriteArrayList()
protected java.util.Collection<java.lang.reflect.Method>
suppressForEmptyList()
protected java.util.Collection<java.lang.reflect.Method>
suppressForLinkedList()
protected java.util.Collection<java.lang.reflect.Method>
suppressForSingletonList()
protected java.util.Collection<java.lang.reflect.Method>
suppressForUnmodifiableList()
protected java.util.Collection<java.lang.reflect.Method>
suppressForVector()
junit.framework.Test
testsForAbstractList()
junit.framework.Test
testsForAbstractSequentialList()
junit.framework.Test
testsForArrayList()
junit.framework.Test
testsForArraysAsList()
junit.framework.Test
testsForCheckedList()
junit.framework.Test
testsForCopyOnWriteArrayList()
junit.framework.Test
testsForEmptyList()
junit.framework.Test
testsForLinkedList()
junit.framework.Test
testsForSingletonList()
junit.framework.Test
testsForUnmodifiableList()
-
-
-
Method Detail
-
suite
public static junit.framework.Test suite()
-
allTests
public junit.framework.Test allTests()
-
suppressForEmptyList
protected java.util.Collection<java.lang.reflect.Method> suppressForEmptyList()
-
suppressForSingletonList
protected java.util.Collection<java.lang.reflect.Method> suppressForSingletonList()
-
suppressForArraysAsList
protected java.util.Collection<java.lang.reflect.Method> suppressForArraysAsList()
-
suppressForArrayList
protected java.util.Collection<java.lang.reflect.Method> suppressForArrayList()
-
suppressForLinkedList
protected java.util.Collection<java.lang.reflect.Method> suppressForLinkedList()
-
suppressForCopyOnWriteArrayList
protected java.util.Collection<java.lang.reflect.Method> suppressForCopyOnWriteArrayList()
-
suppressForUnmodifiableList
protected java.util.Collection<java.lang.reflect.Method> suppressForUnmodifiableList()
-
suppressForCheckedList
protected java.util.Collection<java.lang.reflect.Method> suppressForCheckedList()
-
suppressForAbstractList
protected java.util.Collection<java.lang.reflect.Method> suppressForAbstractList()
-
suppressForAbstractSequentialList
protected java.util.Collection<java.lang.reflect.Method> suppressForAbstractSequentialList()
-
suppressForVector
protected java.util.Collection<java.lang.reflect.Method> suppressForVector()
-
testsForEmptyList
public junit.framework.Test testsForEmptyList()
-
testsForSingletonList
public junit.framework.Test testsForSingletonList()
-
testsForArraysAsList
public junit.framework.Test testsForArraysAsList()
-
testsForArrayList
public junit.framework.Test testsForArrayList()
-
testsForLinkedList
public junit.framework.Test testsForLinkedList()
-
testsForCopyOnWriteArrayList
public junit.framework.Test testsForCopyOnWriteArrayList()
-
testsForUnmodifiableList
public junit.framework.Test testsForUnmodifiableList()
-
testsForCheckedList
public junit.framework.Test testsForCheckedList()
-
testsForAbstractList
public junit.framework.Test testsForAbstractList()
-
testsForAbstractSequentialList
public junit.framework.Test testsForAbstractSequentialList()
-
-