MapsTest.java | 623 Set<String> strings = ImmutableSet.of("one", "two", "three"); local 624 Map<String, Integer> map = Maps.asMap(strings, LENGTH_FUNCTION); 635 Set<String> strings = Sets.newLinkedHashSet(); local 636 Collections.addAll(strings, "one", "two", "three"); 637 Map<String, Integer> map = Maps.asMap(strings, LENGTH_FUNCTION); 640 strings.add("four"); 646 Set<String> strings = Sets.newLinkedHashSet(); local 647 Collections.addAll(strings, "one", "two", "three"); 648 Map<String, Integer> map = Maps.asMap(strings, LENGTH_FUNCTION); 651 ASSERT.that(strings).has().exactly("one", "three").inOrder() 655 Set<String> strings = ImmutableSet.of(); local 678 SortedSet<String> strings = new NonNavigableSortedSet(); local 697 SortedSet<String> strings = new NonNavigableSortedSet(); local 725 SortedSet<String> strings = new NonNavigableSortedSet(); local 759 SortedSet<String> strings = new NonNavigableSortedSet(); local 767 Iterable<String> strings = ImmutableList.of("one", "two", "three"); local 777 Iterator<String> strings = ImmutableList.of("one", "two", "three").iterator(); local 787 Iterable<String> strings = ImmutableList.of("one", "two", "three", "two", "one"); local 797 Iterable<String> strings = Arrays.asList("one", null, "three"); local 806 Iterable<String> strings = ImmutableList.of("one", "two", "three"); local [all...] |