Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testGet_list (0.05 seconds)

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

      private void testGetOnEmpty(Iterable<String> iterable) {
        try {
          Iterables.get(iterable, 0);
          fail();
        } catch (IndexOutOfBoundsException expected) {
        }
      }
    
      public void testGet_list() {
        testGetOnAbc(newArrayList("a", "b", "c"));
      }
    
      public void testGet_emptyList() {
        testGetOnEmpty(Collections.<String>emptyList());
      }
    
      public void testGet_sortedSet() {
    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)
Back to Top