Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testCopyOf_shortcut_sameType (0.13 sec)

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

      }
    
      public void testCopyOf_shortcut_singleton() {
        Collection<String> c = of("a");
        assertEquals(singleton("a"), copyOf(c));
        assertSame(c, copyOf(c));
      }
    
      public void testCopyOf_shortcut_sameType() {
        Collection<String> c = of("a", "b", "c");
        assertSame(c, copyOf(c));
      }
    
      public void testToString() {
        Set<String> set = of("a", "b", "c", "d", "e", "f", "g");
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top