- Sort Score
- Num 10 results
- Language All
Results 81 - 82 of 82 for expectUnchanged (0.09 seconds)
-
android/guava-testlib/src/com/google/common/collect/testing/google/MultimapPutTester.java
} @MapFeature.Require(value = SUPPORTS_PUT, absent = ALLOWS_NULL_VALUES) public void testPutNullValue_unsupported() { assertThrows(NullPointerException.class, () -> multimap().put(k1(), null)); expectUnchanged(); } @MapFeature.Require({SUPPORTS_PUT, ALLOWS_NULL_KEYS}) public void testPutNullKey() { int size = getNumElements(); multimap().put(null, v3()); assertGet(null, v3());
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Sep 22 20:54:16 GMT 2025 - 7.3K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/AbstractContainerTester.java
* examining whether the features include KNOWN_ORDER? */ protected void expectContents(Collection<E> expected) { assertEqualIgnoringOrder(expected, actualContents()); } protected void expectUnchanged() { expectContents(getOrderedElements()); } /** * Asserts that the collection under test contains exactly the elements it was initialized with
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Sep 22 20:54:16 GMT 2025 - 8.9K bytes - Click Count (0)