Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testCopyInto_emptySet (2.81 sec)

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

        assertThat(difference(emptySet(), emptySet()).copyInto(set)).isSameInstanceAs(set);
        assertThat(symmetricDifference(emptySet(), emptySet()).copyInto(set)).isSameInstanceAs(set);
      }
    
      public void testCopyInto_emptySet() {
        assertThat(union(newHashSet(1, 2), newHashSet(2, 3)).copyInto(new HashSet<>()))
            .containsExactly(1, 2, 3);
        assertThat(intersection(newHashSet(1, 2), newHashSet(2, 3)).copyInto(new HashSet<>()))
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.9K bytes
    - Viewed (0)
Back to top