Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testCheckElementIndex_withDesc_negative (0.55 seconds)

  1. android/guava-tests/test/com/google/common/base/PreconditionsTest.java

            assertThrows(IndexOutOfBoundsException.class, () -> checkElementIndex(1, 1));
        assertThat(expected).hasMessageThat().isEqualTo("index (1) must be less than size (1)");
      }
    
      public void testCheckElementIndex_withDesc_negative() {
        IndexOutOfBoundsException expected =
            assertThrows(IndexOutOfBoundsException.class, () -> checkElementIndex(-1, 1, "foo"));
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 19K bytes
    - Click Count (0)
Back to Top