Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testUnion_isView (0.19 seconds)

  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);
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 29.9K bytes
    - Click Count (0)
Back to Top