Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testCombineUnordered_empty (0.09 seconds)

  1. guava-tests/test/com/google/common/hash/HashingTest.java

        Collections.shuffle(hashCodes, random);
        HashCode hashCode2 = Hashing.combineOrdered(hashCodes);
    
        assertFalse(hashCode1.equals(hashCode2));
      }
    
      public void testCombineUnordered_empty() {
        assertThrows(
            IllegalArgumentException.class,
            () -> Hashing.combineUnordered(Collections.<HashCode>emptySet()));
      }
    
      public void testCombineUnordered_differentBitLengths() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 26.7K bytes
    - Click Count (2)
Back to Top