Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testRemove_nullQueriesNotSupported (0.13 sec)

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

        }
        expectUnchanged();
        expectMissing(e3());
      }
    
      @MapFeature.Require(value = SUPPORTS_REMOVE, absent = ALLOWS_NULL_KEY_QUERIES)
      public void testRemove_nullQueriesNotSupported() {
        try {
          assertNull(
              "remove(null) should return null or throw NullPointerException", getMap().remove(null));
        } catch (NullPointerException tolerated) {
        }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 20:00:30 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top