Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for testGet_withDefault_simple (0.14 seconds)

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

      }
    
      public void testGet_withDefault_negativePosition() {
        assertThrows(
            IndexOutOfBoundsException.class, () -> Iterables.get(newArrayList("a", "b", "c"), -1, "d"));
      }
    
      public void testGet_withDefault_simple() {
        ArrayList<String> list = newArrayList("a", "b", "c");
        assertThat(Iterables.get(list, 1, "d")).isEqualTo("b");
      }
    
      public void testGet_withDefault_iterable() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 47.5K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/collect/IteratorsTest.java

    cpovirk <******@****.***> 1773406752 -0700
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 57.3K bytes
    - Click Count (0)
  3. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

    cpovirk <******@****.***> 1773406752 -0700
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 57.3K bytes
    - Click Count (0)
Back to Top