Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testSkip_skipNone (0.06 seconds)

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

      public void testSkip_pastEndList() {
        Collection<String> list = Lists.newArrayList("a", "b");
        assertEquals(emptyList(), Lists.newArrayList(FluentIterable.from(list).skip(20)));
      }
    
      public void testSkip_skipNone() {
        Collection<String> set = ImmutableSet.of("a", "b");
        assertEquals(
            Lists.newArrayList("a", "b"), Lists.newArrayList(FluentIterable.from(set).skip(0)));
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 31.2K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/collect/IterablesTest.java

      }
    
      public void testSkip_pastEndList() {
        Collection<String> list = newArrayList("a", "b");
        assertEquals(emptyList(), newArrayList(skip(list, 20)));
      }
    
      public void testSkip_skipNone() {
        Collection<String> set = ImmutableSet.of("a", "b");
        assertEquals(newArrayList("a", "b"), newArrayList(skip(set, 0)));
      }
    
      public void testSkip_skipNoneList() {
    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