Home
last modified time | relevance | path

Searched refs:expectAdded (Results 1 – 12 of 12) sorted by relevance

/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
DListAddAtIndexTester.java45 expectAdded(0, samples.e0); in testAddAtIndex_supportedPresent()
66 expectAdded(0, samples.e3); in testAddAtIndex_supportedNotPresent()
84 expectAdded(getNumElements() / 2, samples.e3); in testAddAtIndex_middle()
91 expectAdded(getNumElements(), samples.e3); in testAddAtIndex_end()
98 expectAdded(0, (E) null); in testAddAtIndex_nullSupported()
DListAddAllAtIndexTester.java49 expectAdded(0, samples.e0); in testAddAllAtIndex_supportedAllPresent()
68 expectAdded(0, samples.e0, samples.e3); in testAddAllAtIndex_supportedSomePresent()
106 expectAdded(0, samples.e0, samples.e1, samples.e0, samples.e1); in testAddAllAtIndex_withDuplicates()
119 expectAdded(0, (E) null); in testAddAllAtIndex_nullSupported()
141 expectAdded(getNumElements() / 2, createDisjointCollection()); in testAddAllAtIndex_middle()
149 expectAdded(getNumElements(), createDisjointCollection()); in testAddAllAtIndex_end()
DMapPutAllTester.java75 expectAdded(samples.e3, samples.e4); in testPutAll_supportedNonePresent()
93 expectAdded(samples.e3); in testPutAll_supportedSomePresent()
121 expectAdded(containsNullKey.get(0)); in testPutAll_nullKeySupported()
142 expectAdded(containsNullValue.get(0)); in testPutAll_nullValueSupported()
DMapPutTester.java59 expectAdded(samples.e3); in testPut_supportedNotPresent()
98 expectAdded(nullKeyEntry); in testPut_nullKeySupportedNotPresent()
129 expectAdded(nullValueEntry); in testPut_nullValueSupported()
190 expectAdded(nullKeyValueEntry); in testPut_nullKeyAndValueSupported()
DQueueOfferTester.java39 expectAdded(samples.e3); in testOffer_supportedNotPresent()
45 expectAdded((E) null); in testOffer_nullSupported()
DSetAddAllTester.java42 expectAdded(samples.e3); in testAddAll_supportedSomePresent()
51 expectAdded(samples.e3, samples.e4); in testAddAll_withDuplicates()
DListAddAllTester.java42 expectAdded(samples.e0); in testAddAll_supportedAllPresent()
62 expectAdded(samples.e0, samples.e1, samples.e0, samples.e1); in testAddAll_withDuplicates()
DCollectionAddTester.java46 expectAdded(samples.e3); in testAdd_supportedNotPresent()
76 expectAdded((E) null); in testAdd_nullSupported()
DCollectionAddAllTester.java66 expectAdded(samples.e3, samples.e4); in testAddAll_supportedNonePresent()
121 expectAdded((E) null); in testAddAll_nullSupported()
DListAddTester.java45 expectAdded(samples.e0); in testAdd_supportedPresent()
DListSubListTester.java102 expectAdded(0, samples.e3); in testSubList_subListAddAffectsOriginal()
140 expectAdded(2, samples.e3); in testSubList_subListAddAtIndexAffectsOriginalLargeList()
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DAbstractContainerTester.java138 protected final void expectAdded(E... elements) { in expectAdded() method in AbstractContainerTester
144 protected final void expectAdded(int index, E... elements) { in expectAdded() method in AbstractContainerTester
145 expectAdded(index, Arrays.asList(elements)); in expectAdded()
148 protected final void expectAdded(int index, Collection<E> elements) { in expectAdded() method in AbstractContainerTester