Home
last modified time | relevance | path

Searched refs:EMPTY_COLLECTION (Results 1 – 4 of 4) sorted by relevance

/external/guava/guava-tests/test/com/google/common/collect/
DForwardingCollectionTest.java94 private static final Collection<String> EMPTY_COLLECTION = field in ForwardingCollectionTest
151 forward.addAll(EMPTY_COLLECTION); in testAddAll_Collection()
166 forward.containsAll(EMPTY_COLLECTION); in testContainsAll_Collection()
186 forward.removeAll(EMPTY_COLLECTION); in testRemoveAll_Collection()
191 forward.retainAll(EMPTY_COLLECTION); in testRetainAll_Collection()
DForwardingMultisetTest.java136 private static final Collection<String> EMPTY_COLLECTION = field in ForwardingMultisetTest
289 forward().addAll(EMPTY_COLLECTION); in testAddAll_Collection()
304 forward().containsAll(EMPTY_COLLECTION); in testContainsAll_Collection()
324 forward().removeAll(EMPTY_COLLECTION); in testRemoveAll_Collection()
329 forward().retainAll(EMPTY_COLLECTION); in testRetainAll_Collection()
DSetsTest.java94 private static final Collection<Integer> EMPTY_COLLECTION field in SetsTest
407 verifySetContents(set, EMPTY_COLLECTION);
427 verifySetContents(set, EMPTY_COLLECTION);
432 verifySetContents(set, EMPTY_COLLECTION);
442 verifySetContents(set, EMPTY_COLLECTION);
452 verifyLinkedHashSetContents(set, EMPTY_COLLECTION);
473 verifySetContents(set, EMPTY_COLLECTION);
478 verifySetContents(set, EMPTY_COLLECTION);
483 verifySortedSetContents(set, EMPTY_COLLECTION, null);
531 verifySortedSetContents(set, EMPTY_COLLECTION, SOME_COMPARATOR);
[all …]
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DSetsTest.java69 private static final Collection<Integer> EMPTY_COLLECTION field in SetsTest
149 verifySetContents(set, EMPTY_COLLECTION); in testNewHashSetEmpty()
169 verifySetContents(set, EMPTY_COLLECTION); in testNewHashSetWithExpectedSizeSmall()
174 verifySetContents(set, EMPTY_COLLECTION); in testNewHashSetWithExpectedSizeLarge()
184 verifySetContents(set, EMPTY_COLLECTION); in testNewConcurrentHashSetEmpty()
194 verifyLinkedHashSetContents(set, EMPTY_COLLECTION); in testNewLinkedHashSetEmpty()
215 verifySetContents(set, EMPTY_COLLECTION); in testNewLinkedHashSetWithExpectedSizeSmall()
220 verifySetContents(set, EMPTY_COLLECTION); in testNewLinkedHashSetWithExpectedSizeLarge()
225 verifySortedSetContents(set, EMPTY_COLLECTION, null); in testNewTreeSetEmpty()
273 verifySortedSetContents(set, EMPTY_COLLECTION, SOME_COMPARATOR); in testNewTreeSetEmptyWithComparator()