Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for testCopyOf_shortcut_sameType (0.15 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  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));
        assertThat(copyOf(c)).isSameInstanceAs(c);
      }
    
      public void testCopyOf_shortcut_sameType() {
        Collection<String> c = of("a", "b", "c");
        assertThat(copyOf(c)).isSameInstanceAs(c);
      }
    
      public void testToString() {
        Set<String> set = of("a", "b", "c", "d", "e", "f", "g");
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 18.5K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/collect/ImmutableSortedMultisetTest.java

    cpovirk <******@****.***> 1773406752 -0700
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 19.6K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/collect/ImmutableMultisetTest.java

    cpovirk <******@****.***> 1773406752 -0700
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 24.9K bytes
    - Click Count (0)
  4. guava-tests/test/com/google/common/collect/ImmutableSortedMultisetTest.java

    cpovirk <******@****.***> 1773406752 -0700
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 22.8K bytes
    - Click Count (0)
  5. guava-tests/test/com/google/common/collect/ImmutableListTest.java

    cpovirk <******@****.***> 1773406752 -0700
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 23.8K bytes
    - Click Count (0)
Back to Top