Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testGet_outOfBounds (0.12 sec)

  1. android/guava-tests/test/com/google/common/collect/FluentIterableTest.java

        assertEquals("b", FluentIterable.from(Lists.newArrayList("a", "b", "c")).get(1));
        assertEquals("c", FluentIterable.from(Lists.newArrayList("a", "b", "c")).get(2));
      }
    
      public void testGet_outOfBounds() {
        assertThrows(
            IndexOutOfBoundsException.class,
            () -> FluentIterable.from(Lists.newArrayList("a", "b", "c")).get(-1));
    
        assertThrows(
            IndexOutOfBoundsException.class,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 30.4K bytes
    - Viewed (0)
Back to top