Class TestsForQueuesInJavaUtil
- java.lang.Object
-
- com.google.common.collect.testing.TestsForQueuesInJavaUtil
-
@GwtIncompatible public class TestsForQueuesInJavaUtil extends java.lang.Object
Generates a test suite covering theQueue
implementations in thejava.util
package. Can be subclassed to specify tests that should be suppressed.
-
-
Constructor Summary
Constructors Constructor Description TestsForQueuesInJavaUtil()
-
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>
suppressForArrayBlockingQueue()
protected java.util.Collection<java.lang.reflect.Method>
suppressForConcurrentLinkedQueue()
protected java.util.Collection<java.lang.reflect.Method>
suppressForLinkedBlockingQueue()
protected java.util.Collection<java.lang.reflect.Method>
suppressForLinkedList()
protected java.util.Collection<java.lang.reflect.Method>
suppressForPriorityBlockingQueue()
protected java.util.Collection<java.lang.reflect.Method>
suppressForPriorityQueue()
junit.framework.Test
testsForArrayBlockingQueue()
junit.framework.Test
testsForConcurrentLinkedQueue()
junit.framework.Test
testsForLinkedBlockingQueue()
junit.framework.Test
testsForLinkedList()
junit.framework.Test
testsForPriorityBlockingQueue()
junit.framework.Test
testsForPriorityQueue()
-
-
-
Method Detail
-
suite
public static junit.framework.Test suite()
-
allTests
public junit.framework.Test allTests()
-
suppressForLinkedList
protected java.util.Collection<java.lang.reflect.Method> suppressForLinkedList()
-
suppressForArrayBlockingQueue
protected java.util.Collection<java.lang.reflect.Method> suppressForArrayBlockingQueue()
-
suppressForConcurrentLinkedQueue
protected java.util.Collection<java.lang.reflect.Method> suppressForConcurrentLinkedQueue()
-
suppressForLinkedBlockingQueue
protected java.util.Collection<java.lang.reflect.Method> suppressForLinkedBlockingQueue()
-
suppressForPriorityBlockingQueue
protected java.util.Collection<java.lang.reflect.Method> suppressForPriorityBlockingQueue()
-
suppressForPriorityQueue
protected java.util.Collection<java.lang.reflect.Method> suppressForPriorityQueue()
-
testsForLinkedList
public junit.framework.Test testsForLinkedList()
-
testsForArrayBlockingQueue
public junit.framework.Test testsForArrayBlockingQueue()
-
testsForConcurrentLinkedQueue
public junit.framework.Test testsForConcurrentLinkedQueue()
-
testsForLinkedBlockingQueue
public junit.framework.Test testsForLinkedBlockingQueue()
-
testsForPriorityBlockingQueue
public junit.framework.Test testsForPriorityBlockingQueue()
-
testsForPriorityQueue
public junit.framework.Test testsForPriorityQueue()
-
-