Searched refs:copyFromSorted (Results 1 – 2 of 2) sorted by relevance
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
D | TreeMultimapNaturalTest.java | 175 TreeMultimap<Double, Double> copyFromSorted = TreeMultimap.create(sorted); in testCreateFromSortedSetMultimap() local 176 assertEquals(tree, copyFromSorted); in testCreateFromSortedSetMultimap() 177 assertSame(Ordering.natural(), copyFromSorted.keyComparator()); in testCreateFromSortedSetMultimap() 178 assertSame(Ordering.natural(), copyFromSorted.valueComparator()); in testCreateFromSortedSetMultimap() 179 assertSame(Ordering.natural(), copyFromSorted.get(1.0).comparator()); in testCreateFromSortedSetMultimap()
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | TreeMultimapNaturalTest.java | 233 TreeMultimap<Double, Double> copyFromSorted = TreeMultimap.create(sorted); in testCreateFromSortedSetMultimap() local 234 assertEquals(tree, copyFromSorted); in testCreateFromSortedSetMultimap() 235 assertSame(Ordering.natural(), copyFromSorted.keyComparator()); in testCreateFromSortedSetMultimap() 236 assertSame(Ordering.natural(), copyFromSorted.valueComparator()); in testCreateFromSortedSetMultimap() 237 assertSame(Ordering.natural(), copyFromSorted.get(1.0).comparator()); in testCreateFromSortedSetMultimap()
|