Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testCreation_manyDuplicates (0.17 sec)

  1. android/guava-tests/test/com/google/common/collect/ImmutableSetTest.java

        assertEquals(
            Lists.newArrayList("a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m"),
            Lists.newArrayList(set));
      }
    
      public void testCreation_manyDuplicates() {
        // now we'll get the varargs overload
        ImmutableSet<String> set =
            ImmutableSet.of("a", "b", "c", "c", "c", "c", "b", "b", "a", "a", "c", "c", "c", "a");
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top