8021601: Add unit test for PriorityQueue(Comparator) constructor

Reviewed-by: darcy, alanb
This commit is contained in:
Mike Duigou 2013-07-26 17:23:20 -07:00
parent ac26dd6009
commit b9742daca7
2 changed files with 3 additions and 2 deletions

View File

@ -136,8 +136,8 @@ public class PriorityQueue<E> extends AbstractQueue<E>
}
/**
* Creates a {@code PriorityQueue} with the default initial capacity
* that orders its elements according to the specified comparator.
* Creates a {@code PriorityQueue} with the default initial capacity and
* whose elements are ordered according to the specified comparator.
*
* @param comparator the comparator that will be used to order this
* priority queue. If {@code null}, the {@linkplain Comparable

View File

@ -64,6 +64,7 @@ public class RemoveContains {
public int compare(String x, String y) {
return x.charAt(0) - y.charAt(0); }};
test(new PriorityQueue<String>(firstChar));
test(new PriorityQueue<String>(10, firstChar));
test(new PriorityBlockingQueue<String>(10, firstChar));
test(new ArrayBlockingQueue<String>(10));