Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testSetCount_noOpNull_nullSupported (0.09 sec)

  1. guava-testlib/src/com/google/common/collect/testing/google/AbstractMultisetSetCountTester.java

        assertThrows(NullPointerException.class, () -> setCountNoCheckReturnValue(null, 1));
      }
    
      @CollectionFeature.Require(ALLOWS_NULL_VALUES)
      public void testSetCount_noOpNull_nullSupported() {
        try {
          assertSetCount(null, 0);
        } catch (UnsupportedOperationException tolerated) {
        }
      }
    
      @CollectionFeature.Require(absent = ALLOWS_NULL_VALUES)
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 13K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/google/AbstractMultisetSetCountTester.java

        assertThrows(NullPointerException.class, () -> setCountNoCheckReturnValue(null, 1));
      }
    
      @CollectionFeature.Require(ALLOWS_NULL_VALUES)
      public void testSetCount_noOpNull_nullSupported() {
        try {
          assertSetCount(null, 0);
        } catch (UnsupportedOperationException tolerated) {
        }
      }
    
      @CollectionFeature.Require(absent = ALLOWS_NULL_VALUES)
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 13K bytes
    - Viewed (0)
Back to top