Home
last modified time | relevance | path

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

/external/guava/guava-tests/test/com/google/common/collect/
DComparatorsTest.java83 .expectCollects(Arrays.asList(1, 2), 1, 2, 3, 4, 5, 6) in testLeastCollector()
84 .expectCollects(Arrays.asList(1), 1) in testLeastCollector()
85 .expectCollects(Collections.emptyList()); in testLeastCollector()
90 .expectCollects(Arrays.asList(6, 5), 1, 2, 3, 4, 5, 6) in testGreatestCollector()
91 .expectCollects(Arrays.asList(1), 1) in testGreatestCollector()
92 .expectCollects(Collections.emptyList()); in testGreatestCollector()
DTablesTest.java44 .expectCollects( in testToTable()
66 .expectCollects( in testToTableNullMerge()
108 .expectCollects( in testToTableMerging()
DImmutableMultisetTest.java323 .expectCollects(ImmutableMultiset.of()) in testToImmutableMultiset()
324 .expectCollects( in testToImmutableMultiset()
335 .expectCollects(ImmutableMultiset.of()) in testToImmutableMultisetCountFunction()
336 .expectCollects( in testToImmutableMultisetCountFunction()
391 .expectCollects( in testToImmutableMultiset_duplicates()
399 .expectCollects( in testToImmutableMultiset_duplicates()
DImmutableEnumMapTest.java114 .expectCollects( in testToImmutableEnumMap()
137 .expectCollects( in testToImmutableMapMerging()
DImmutableSortedMultisetTest.java466 .expectCollects(ImmutableSortedMultiset.emptyMultiset(String.CASE_INSENSITIVE_ORDER)) in testToImmutableSortedMultiset()
467 .expectCollects( in testToImmutableSortedMultiset()
491 .expectCollects(ImmutableSortedMultiset.emptyMultiset(String.CASE_INSENSITIVE_ORDER)) in testToImmutableSortedMultisetCountFunction()
492 .expectCollects( in testToImmutableSortedMultisetCountFunction()
DImmutableSetMultimapTest.java418 .expectCollects(ImmutableSetMultimap.of()) in testToImmutableSetMultimap()
419 .expectCollects( in testToImmutableSetMultimap()
445 .expectCollects(empty) in testFlatteningToImmutableSetMultimap()
446 .expectCollects(filled, "banana", "apple", "carrot", "asparagus", "cherry"); in testFlatteningToImmutableSetMultimap()
DImmutableListMultimapTest.java403 .expectCollects(ImmutableListMultimap.of()) in testToImmutableListMultimap()
404 .expectCollects( in testToImmutableListMultimap()
430 .expectCollects(empty) in testFlatteningToImmutableListMultimap()
431 .expectCollects(filled, "banana", "apple", "carrot", "asparagus", "cherry"); in testFlatteningToImmutableListMultimap()
DMultisetsTest.java287 .expectCollects(ImmutableMultiset.<String>of()) in testToMultisetCountFunction()
288 .expectCollects( in testToMultisetCountFunction()
DImmutableSetTest.java308 .expectCollects(ImmutableSet.of("a", "b", "c", "d"), "a", "b", "a", "c", "b", "b", "d"); in testToImmutableSet()
355 .expectCollects(ImmutableSet.of(a, b1, c), a, b1, c, b2); in testToImmutableSet_duplicates()
DMultimapsTest.java100 .expectCollects(empty) in testToMultimap()
101 .expectCollects( in testToMultimap()
125 .expectCollects(empty) in testFlatteningToMultimap()
126 .expectCollects(filled, "banana", "apple", "carrot", "asparagus", "cherry"); in testFlatteningToMultimap()
DImmutableRangeMapTest.java267 .expectCollects(rangeMap, rangeOne, rangeTwo); in testToImmutableRangeSet()
DImmutableTableTest.java55 .expectCollects( in testToImmutableTable()
126 .expectCollects( in testToImmutableTableMerging()
DImmutableSortedSetTest.java724 .expectCollects( in testToImmutableSortedSet()
739 .expectCollects(expected, "a", "B", "a", "c", "b", "b", "d"); in testToImmutableSortedSet_customComparator()
782 .expectCollects(ImmutableSortedSet.of(a, b1, c), a, b1, c, b2); in testToImmutableSortedSet_duplicates()
DImmutableSortedMapTest.java694 .expectCollects(expected, mapEntry("one", 1), mapEntry("two", 2), mapEntry("three", 3)); in testToImmutableSortedMap()
717 .expectCollects( in testToImmutableSortedMapMerging()
DImmutableMapTest.java694 .expectCollects( in testToImmutableMap()
719 .expectCollects( in testToImmutableMapMerging()
DImmutableRangeSetTest.java601 .expectCollects(ranges, rangeOne, rangeTwo); in testToImmutableRangeSet()
DImmutableBiMapTest.java549 .expectCollects( in testToImmutableBiMap()
DImmutableListTest.java466 .expectCollects(ImmutableList.of("a", "b", "c", "d"), "a", "b", "c", "d"); in testToImmutableList()
/external/guava/guava-testlib/src/com/google/common/testing/
DCollectorTester.java143 public final CollectorTester<T, A, R> expectCollects(@Nullable R expectedResult, T... inputs) { in expectCollects() method in CollectorTester