Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testCartesianProduct_hashCode (0.2 sec)

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

        Set<Integer> set = ContiguousSet.create(Range.closed(0, 10000), DiscreteDomain.integers());
        assertThrows(IllegalArgumentException.class, () -> cartesianProduct(set, set, set, set, set));
      }
    
      public void testCartesianProduct_hashCode() {
        // Run through the same cartesian products we tested above
    
        Set<List<Integer>> degenerate = cartesianProduct();
        checkHashCode(degenerate);
    
        checkHashCode(cartesianProduct(set(1, 2)));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 48.6K bytes
    - Viewed (0)
Back to top