Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for runEntryWithNullTest (0.17 sec)

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

        Entry<K, V> entryWithNull = entry(null, v3());
        runEntryWithNullTest(entryWithNull);
      }
    
      @CollectionSize.Require(absent = CollectionSize.ZERO)
      @MapFeature.Require(ALLOWS_NULL_VALUES)
      public void testHashCode_containingNullValue() {
        Entry<K, V> entryWithNull = entry(k3(), null);
        runEntryWithNullTest(entryWithNull);
      }
    
      private void runEntryWithNullTest(Entry<K, V> entryWithNull) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jul 24 20:12:35 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/testers/MapHashCodeTester.java

        Entry<K, V> entryWithNull = entry(null, v3());
        runEntryWithNullTest(entryWithNull);
      }
    
      @CollectionSize.Require(absent = CollectionSize.ZERO)
      @MapFeature.Require(ALLOWS_NULL_VALUES)
      public void testHashCode_containingNullValue() {
        Entry<K, V> entryWithNull = entry(k3(), null);
        runEntryWithNullTest(entryWithNull);
      }
    
      private void runEntryWithNullTest(Entry<K, V> entryWithNull) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jul 24 20:12:35 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top