Home
last modified time | relevance | path

Searched refs:expectedValues (Results 1 – 19 of 19) sorted by relevance

/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
DListMultimapRemoveTester.java65 List<V> expectedValues = copyToList(values); in testRemoveAtIndexFromGetPropagates() local
68 expectedValues.remove(i); in testRemoveAtIndexFromGetPropagates()
70 assertGet(k, expectedValues); in testRemoveAtIndexFromGetPropagates()
85 List<V> expectedValues = copyToList(values); in testRemoveAtIndexFromAsMapPropagates() local
89 expectedValues.remove(i); in testRemoveAtIndexFromAsMapPropagates()
91 assertGet(k, expectedValues); in testRemoveAtIndexFromAsMapPropagates()
106 List<V> expectedValues = copyToList(values); in testRemoveAtIndexFromAsMapEntrySetPropagates() local
111 expectedValues.remove(i); in testRemoveAtIndexFromAsMapEntrySetPropagates()
113 assertGet(k, expectedValues); in testRemoveAtIndexFromAsMapEntrySetPropagates()
DListMultimapPutTester.java46 List<V> expectedValues = Helpers.copyToList(values); in testPutAddsValueAtEnd() local
49 expectedValues.add(value); in testPutAddsValueAtEnd()
51 assertGet(key, expectedValues); in testPutAddsValueAtEnd()
69 List<V> expectedValues = copyToList(values); in testPutDuplicateValue() local
72 expectedValues.add(v); in testPutDuplicateValue()
73 assertGet(k, expectedValues); in testPutDuplicateValue()
DListMultimapPutAllTester.java45 List<V> expectedValues = copyToList(multimap().get(k)); in testPutAllAddsAtEndInOrder() local
48 expectedValues.addAll(values); in testPutAllAddsAtEndInOrder()
50 assertGet(k, expectedValues); in testPutAllAddsAtEndInOrder()
DSetMultimapPutAllTester.java47 Set<V> expectedValues = copyToSet(multimap().get(k)); in testPutAllHandlesDuplicates() local
50 expectedValues.addAll(valuesToPut); in testPutAllHandlesDuplicates()
52 assertGet(k, expectedValues); in testPutAllHandlesDuplicates()
DSetMultimapPutTester.java59 Set<V> expectedValues = copyToSet(values); in testPutDuplicateValue() local
62 assertEquals(expectedValues, values); in testPutDuplicateValue()
63 assertGet(k, expectedValues); in testPutDuplicateValue()
DMultimapAsMapTester.java50 List<V> expectedValues = new ArrayList<V>(); in testAsMapGet() local
53 expectedValues.add(entry.getValue()); in testAsMapGet()
58 if (expectedValues.isEmpty()) { in testAsMapGet()
61 assertThat(collection).has().exactlyAs(expectedValues); in testAsMapGet()
/external/guice/core/test/com/google/inject/
DBinderTestSuite.java79 .expectedValues(new PlainA(1), new PlainA(1), new PlainA(1)) in suite()
95 .expectedValues(new PlainA(201), new PlainA(201), new PlainA(202), new PlainA(202)) in suite()
200 .expectedValues(new PlainA(201), new PlainA(201), new PlainA(202), new PlainA(202)) in suite()
254 builder.expectedValues(new PlainA(101), new PlainA(101), new PlainA(101)); in apply()
264 builder.expectedValues(new PlainA(201), new PlainA(201), new PlainA(201)); in apply()
273 builder.expectedValues(new PlainA(201), new PlainA(201), new PlainA(201)); in apply()
282 builder.expectedValues(new PlainA(201), new PlainA(201), new PlainA(202), new PlainA(202)); in apply()
291 builder.expectedValues(new PlainA(201), new PlainA(201), new PlainA(202), new PlainA(202)); in apply()
313 private List<Object> expectedValues = Lists.<Object>newArrayList( field in BinderTestSuite.Builder
356 private <T> Builder expectedValues(T... values) { in expectedValues() method in BinderTestSuite.Builder
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DMapsTransformValuesTest.java89 Collection<?> expectedValues = expected.values(); in assertMapsEqual() local
91 assertEquals(expectedValues.size(), mapValues.size()); in assertMapsEqual()
92 assertTrue(expectedValues.containsAll(mapValues)); in assertMapsEqual()
93 assertTrue(mapValues.containsAll(expectedValues)); in assertMapsEqual()
DMapsTransformValuesUnmodifiableIteratorTest.java142 Collection<?> expectedValues = expected.values();
144 assertEquals(expectedValues.size(), mapValues.size());
145 assertTrue(expectedValues.containsAll(mapValues));
146 assertTrue(mapValues.containsAll(expectedValues));
/external/guava/guava-testlib/test/com/google/common/testing/
DNullPointerTesterTest.java812 final void assertNonNullValues(Object... expectedValues) { in assertNonNullValues() argument
813 assertEquals(expectedValues.length, arguments.size()); in assertNonNullValues()
814 for (int i = 0; i < expectedValues.length; i++) { in assertNonNullValues()
816 expectedValues[i], arguments.get(i)); in assertNonNullValues()
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DLinkedHashMultimap.java315 ValueSet(K key, int expectedValues) { in ValueSet() argument
320 int tableSize = Hashing.closedTableSize(expectedValues, VALUE_SET_LOAD_FACTOR); in ValueSet()
/external/guice/extensions/multibindings/test/com/google/inject/multibindings/
DMultibinderTest.java1149 Collection<String> expectedValues = ImmutableList.of("A", "B", "C"); in testMultibinderCanInjectCollectionOfProviders() local
1155 assertEquals(expectedValues, collectValues(providers)); in testMultibinderCanInjectCollectionOfProviders()
1159 assertEquals(expectedValues, collectValues(javaxProviders)); in testMultibinderCanInjectCollectionOfProviders()
1173 Collection<String> expectedValues = ImmutableList.of("A", "B", "C"); in testMultibinderCanInjectCollectionOfProvidersWithAnnotation() local
1180 assertEquals(expectedValues, values); in testMultibinderCanInjectCollectionOfProvidersWithAnnotation()
1184 assertEquals(expectedValues, collectValues(javaxProviders)); in testMultibinderCanInjectCollectionOfProvidersWithAnnotation()
/external/deqp/external/vulkancts/modules/vulkan/memory/
DvktMemoryMappingTests.cpp288 std::ostringstream expectedValues; in compareAndLogBuffer() local
295 expectedValues << ", "; in compareAndLogBuffer()
299 expectedValues << reference[ndx]; in compareAndLogBuffer()
305 expectedValues << "..."; in compareAndLogBuffer()
309 …log << TestLog::Message << "Expected values at offset: " << firstFailed << ", " << expectedValues.… in compareAndLogBuffer()
/external/guava/guava/src/com/google/common/collect/
DLinkedHashMultimap.java319 ValueSet(K key, int expectedValues) { in ValueSet() argument
324 int tableSize = Hashing.closedTableSize(expectedValues, VALUE_SET_LOAD_FACTOR); in ValueSet()
/external/guava/guava-tests/test/com/google/common/cache/
DLocalLoadingCacheTest.java283 Set<Object> expectedValues = ImmutableSet.of(one); in testAsMap() local
285 assertEquals(expectedValues, actualValues); in testAsMap()
/external/okhttp/okhttp-android-support/src/test/java/com/squareup/okhttp/internal/huc/
DJavaApiConverterTest.java428 String... expectedValues) { in assertHeadersContainsMapping() argument
430 assertEquals(newSet(expectedValues), newSet(headers.get(expectedKey))); in assertHeadersContainsMapping()
/external/guice/lib/build/
Dguava-testlib-16.0.1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/external/guice/lib/
Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META- ...
/external/dagger2/lib/
Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...