Home
last modified time | relevance | path

Searched refs:assertGet (Results 1 – 18 of 18) sorted by relevance

/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
DMultimapPutIterableTester.java52 assertGet(sampleKeys().e0, sampleValues().e0, sampleValues().e3, sampleValues().e4); in testPutAllNonEmptyIterableOnPresentKey()
60 assertGet(sampleKeys().e0, sampleValues().e0, sampleValues().e3, sampleValues().e4); in testPutAllNonEmptyCollectionOnPresentKey()
71 assertGet(sampleKeys().e3, sampleValues().e3, sampleValues().e4); in testPutAllNonEmptyIterableOnAbsentKey()
78 assertGet(sampleKeys().e3, sampleValues().e3, sampleValues().e4); in testPutAllNonEmptyCollectionOnAbsentKey()
85 assertGet(sampleKeys().e0, sampleValues().e0, sampleValues().e3, null); in testPutAllNullValueOnPresentKey_supported()
91 assertGet(sampleKeys().e3, sampleValues().e3, null); in testPutAllNullValueOnAbsentKey_supported()
148 assertGet(null, sampleValues().e3, sampleValues().e4); in testPutAllOnPresentNullKey()
DMultimapPutTester.java60 assertGet(key, ImmutableList.<V>of()); in testPutEmpty()
64 assertGet(key, value); in testPutEmpty()
77 assertGet(key, oldValue); in testPutPresent()
81 assertGet(key, oldValue, newValue); in testPutPresent()
101 assertGet(key, values); in testPutTwoElements()
111 assertGet(sampleKeys().e3, Lists.newArrayList((V) null)); // ImmutableList.of can't take null. in testPutNullValue_supported()
132 assertGet(null, sampleValues().e3); in testPutNullKey()
DAbstractListMultimapTester.java34 protected void assertGet(K key, V... values) { in assertGet() method in AbstractListMultimapTester
35 assertGet(key, Arrays.asList(values)); in assertGet()
38 protected void assertGet(K key, Collection<V> values) { in assertGet() method in AbstractListMultimapTester
DMultimapReplaceValuesTester.java54 assertGet(key, values); in testReplaceValuesWithNullValue()
64 assertGet(key, values); in testReplaceValuesWithNullKey()
74 assertGet(key, values); in testReplaceEmptyValues()
86 assertGet(key); in testReplaceValuesWithEmpty()
119 assertGet(k, values); in testReplaceNonEmptyValues()
DAbstractMultimapTester.java143 protected void assertGet(K key, V... values) { in assertGet() method in AbstractMultimapTester
144 assertGet(key, Arrays.asList(values)); in assertGet()
147 protected void assertGet(K key, Collection<V> values) { in assertGet() method in AbstractMultimapTester
DListMultimapRemoveTester.java70 assertGet(k, expectedValues); in testRemoveAtIndexFromGetPropagates()
91 assertGet(k, expectedValues); in testRemoveAtIndexFromAsMapPropagates()
113 assertGet(k, expectedValues); in testRemoveAtIndexFromAsMapEntrySetPropagates()
DListMultimapPutTester.java51 assertGet(key, expectedValues); in testPutAddsValueAtEnd()
73 assertGet(k, expectedValues); in testPutDuplicateValue()
DMultimapKeySetTester.java62 assertGet(sampleKeys().e0); in testKeySetRemovePropagatesToMultimap()
76 assertGet(sampleKeys().e0); in testKeySetIteratorRemove()
DMultimapGetTester.java63 assertGet(sampleKeys().e0, in testGetMultiple()
70 assertGet(sampleKeys().e4); in testGetAbsentKey()
91 assertGet(sampleKeys().e0); in testPropagatesRemoveLastElementToMultimap()
DMultimapRemoveEntryTester.java60 assertGet(sampleKeys().e0, ImmutableList.<V>of()); in testRemovePresent()
71 assertGet(getKeyForNullValue(), ImmutableList.<V>of()); in testRemoveNullKeyPresent()
82 assertGet(getKeyForNullValue(), ImmutableList.<V>of()); in testRemoveNullValuePresent()
DListMultimapReplaceValuesTester.java45 assertGet(k, values); in testReplaceValuesPreservesOrder()
DMultimapAsMapGetTester.java61 assertGet(sampleKeys().e0); in testPropagatesRemoveLastElementToMultimap()
69 assertGet(sampleKeys().e0); in testPropagatesClearToMultimap()
DListMultimapPutAllTester.java50 assertGet(k, expectedValues); in testPutAllAddsAtEndInOrder()
DSetMultimapReplaceValuesTester.java46 assertGet(k, v0, v1); in testReplaceValuesHandlesDuplicates()
DSetMultimapPutAllTester.java52 assertGet(k, expectedValues); in testPutAllHandlesDuplicates()
DSetMultimapPutTester.java63 assertGet(k, expectedValues); in testPutDuplicateValue()
DMultimapClearTester.java58 assertGet(key); in assertCleared()
DMultimapAsMapTester.java90 assertGet(sampleKeys().e0); in testAsMapRemove()