Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testCount_wrongType (0.08 sec)

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

      @CollectionFeature.Require(ALLOWS_NULL_VALUES)
      public void testCount_nullPresent() {
        initCollectionWithNullElement();
        assertEquals(1, getMultiset().count(null));
      }
    
      public void testCount_wrongType() {
        assertEquals(
            "multiset.count(wrongType) didn't return 0", 0, getMultiset().count(WrongType.VALUE));
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 3.6K bytes
    - Viewed (0)
Back to top