Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for 124 (0.03 sec)

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

        expected.add(ImmutableSet.of(1, 2, 3));
    
        Set<Set<Integer>> almostPowerSet = newHashSet(expected);
        almostPowerSet.remove(ImmutableSet.of(1, 2, 3));
        almostPowerSet.add(ImmutableSet.of(1, 2, 4));
    
        new EqualsTester()
            .addEqualityGroup(expected, powerSet)
            .addEqualityGroup(ImmutableSet.of(1, 2, 3))
            .addEqualityGroup(almostPowerSet)
            .testEquals();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 47.8K bytes
    - Viewed (0)
Back to top