Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testPutAllWithSelf (0.07 seconds)

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

        assertThrows(IllegalArgumentException.class, () -> bf1.putAll(bf2));
    
        assertFalse(bf2.isCompatible(bf1));
        assertThrows(IllegalArgumentException.class, () -> bf2.putAll(bf1));
      }
    
      public void testPutAllWithSelf() {
        BloomFilter<Integer> bf1 = BloomFilter.create(integerFunnel(), 1);
        assertFalse(bf1.isCompatible(bf1));
        assertThrows(IllegalArgumentException.class, () -> bf1.putAll(bf1));
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 23K bytes
    - Click Count (0)
Back to Top