Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testSubList_ofSubListEmpty (0.42 seconds)

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

                + "should be reflected in the sublist",
            asList(e3(), e2()),
            subList);
      }
    
      @SuppressWarnings("EmptyList") // ImmutableList doesn't support nullable element types
      public void testSubList_ofSubListEmpty() {
        List<E> subList = getList().subList(0, 0).subList(0, 0);
        assertEquals("subList(0, 0).subList(0, 0) should be an empty list", emptyList(), subList);
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 13.5K bytes
    - Click Count (0)
  2. guava-testlib/src/com/google/common/collect/testing/testers/ListSubListTester.java

                + "should be reflected in the sublist",
            asList(e3(), e2()),
            subList);
      }
    
      @SuppressWarnings("EmptyList") // ImmutableList doesn't support nullable element types
      public void testSubList_ofSubListEmpty() {
        List<E> subList = getList().subList(0, 0).subList(0, 0);
        assertEquals("subList(0, 0).subList(0, 0) should be an empty list", emptyList(), subList);
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 13.5K bytes
    - Click Count (0)
Back to Top