Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testUnion_isView (0.3 sec)

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

                .withFeatures(CollectionSize.SEVERAL, CollectionFeature.ALLOWS_NULL_VALUES)
                .createTestSuite());
    
        suite.addTestSuite(SetViewTest.class);
        return suite;
      }
    
      public void testUnion_isView() {
        Set<Integer> set1 = newHashSet(1, 2);
        Set<Integer> set2 = newHashSet(2, 3);
        Set<Integer> union = union(set1, set2);
        assertThat(union).containsExactly(1, 2, 3);
        set1.add(0);
    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