Searched defs:testCollection (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/test/java/util/AbstractCollection/
H A DToString.java37 testCollection(new LinkedHashSet<Object>() {
41 testCollection(new ArrayList<Object>());
42 testCollection(new Vector<Object>());
43 testCollection(new CopyOnWriteArrayList<Object>());
44 testCollection(new CopyOnWriteArraySet<Object>());
47 private static void testCollection(Collection<Object> c) { method in class:ToString
/openjdk7/jdk/test/java/util/Collection/
H A DIteratorAtEnd.java39 testCollection(new ArrayList());
40 testCollection(new Vector());
41 testCollection(new LinkedList());
42 testCollection(new ArrayDeque());
43 testCollection(new TreeSet());
44 testCollection(new CopyOnWriteArrayList());
45 testCollection(new CopyOnWriteArraySet());
46 testCollection(new ConcurrentSkipListSet());
48 testCollection(new PriorityQueue());
49 testCollection(ne
65 static void testCollection(Collection c) { method in class:IteratorAtEnd
[all...]
H A DMOAT.java61 testCollection(new LinkedHashSet<Integer>());
62 testCollection(new HashSet<Integer>());
63 testCollection(new Vector<Integer>());
64 testCollection(new Vector<Integer>().subList(0,0));
65 testCollection(new ArrayDeque<Integer>());
66 testCollection(new ArrayList<Integer>());
67 testCollection(new ArrayList<Integer>().subList(0,0));
68 testCollection(new LinkedList<Integer>());
69 testCollection(new LinkedList<Integer>().subList(0,0));
70 testCollection(ne
702 private static void testCollection(Collection<Integer> c) { method in class:MOAT
[all...]
/openjdk7/jdk/test/java/util/Collections/
H A DCheckedNull.java37 testCollection(Collections.checkedCollection(
39 testCollection(Collections.checkedList(
41 testCollection(Collections.checkedSet(
50 testCollection(Collections.checkedSortedSet(
88 void testCollection(final Collection c) { method in class:CheckedNull

Completed in 2242 milliseconds