Searched refs:SORTED_EMPTY (Results 1 – 2 of 2) sorted by relevance
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
D | MapsTest.java | 408 private static final SortedMap<Integer, Integer> SORTED_EMPTY = Maps.newTreeMap(); field in MapsTest 420 Maps.difference(SORTED_EMPTY, SORTED_EMPTY); in testSortedMapDifferenceEmptyEmpty() 422 assertEquals(SORTED_EMPTY, diff.entriesOnlyOnLeft()); in testSortedMapDifferenceEmptyEmpty() 423 assertEquals(SORTED_EMPTY, diff.entriesOnlyOnRight()); in testSortedMapDifferenceEmptyEmpty() 424 assertEquals(SORTED_EMPTY, diff.entriesInCommon()); in testSortedMapDifferenceEmptyEmpty() 425 assertEquals(SORTED_EMPTY, diff.entriesDiffering()); in testSortedMapDifferenceEmptyEmpty() 431 Maps.difference(SORTED_EMPTY, SORTED_SINGLETON); in testSortedMapDifferenceEmptySingleton() 433 assertEquals(SORTED_EMPTY, diff.entriesOnlyOnLeft()); in testSortedMapDifferenceEmptySingleton() 435 assertEquals(SORTED_EMPTY, diff.entriesInCommon()); in testSortedMapDifferenceEmptySingleton() 436 assertEquals(SORTED_EMPTY, diff.entriesDiffering()); in testSortedMapDifferenceEmptySingleton() [all …]
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | MapsTest.java | 474 private static final SortedMap<Integer, Integer> SORTED_EMPTY = Maps.newTreeMap(); field in MapsTest 486 Maps.difference(SORTED_EMPTY, SORTED_EMPTY); in testSortedMapDifferenceEmptyEmpty() 488 assertEquals(SORTED_EMPTY, diff.entriesOnlyOnLeft()); in testSortedMapDifferenceEmptyEmpty() 489 assertEquals(SORTED_EMPTY, diff.entriesOnlyOnRight()); in testSortedMapDifferenceEmptyEmpty() 490 assertEquals(SORTED_EMPTY, diff.entriesInCommon()); in testSortedMapDifferenceEmptyEmpty() 491 assertEquals(SORTED_EMPTY, diff.entriesDiffering()); in testSortedMapDifferenceEmptyEmpty() 497 Maps.difference(SORTED_EMPTY, SORTED_SINGLETON); in testSortedMapDifferenceEmptySingleton() 499 assertEquals(SORTED_EMPTY, diff.entriesOnlyOnLeft()); in testSortedMapDifferenceEmptySingleton() 501 assertEquals(SORTED_EMPTY, diff.entriesInCommon()); in testSortedMapDifferenceEmptySingleton() 502 assertEquals(SORTED_EMPTY, diff.entriesDiffering()); in testSortedMapDifferenceEmptySingleton() [all …]
|