Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testRemove_occurrences_negative (0.1 sec)

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

            "multiset.remove(E, 0) didn't return the old count",
            oldCount,
            getMultiset().remove(e0(), 0));
      }
    
      @CollectionFeature.Require(SUPPORTS_REMOVE)
      public void testRemove_occurrences_negative() {
        assertThrows(IllegalArgumentException.class, () -> getMultiset().remove(e0(), -1));
      }
    
      @CollectionFeature.Require(SUPPORTS_REMOVE)
      public void testRemove_occurrences_wrongType() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 7K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/google/MultisetRemoveTester.java

            "multiset.remove(E, 0) didn't return the old count",
            oldCount,
            getMultiset().remove(e0(), 0));
      }
    
      @CollectionFeature.Require(SUPPORTS_REMOVE)
      public void testRemove_occurrences_negative() {
        assertThrows(IllegalArgumentException.class, () -> getMultiset().remove(e0(), -1));
      }
    
      @CollectionFeature.Require(SUPPORTS_REMOVE)
      public void testRemove_occurrences_wrongType() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 7K bytes
    - Viewed (0)
Back to top