Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testForEachLine (0.14 sec)

  1. guava-tests/test/com/google/common/io/CharSourceTester.java

                });
    
        if (expectedLines.isEmpty()) {
          assertTrue(list.isEmpty());
        } else {
          assertEquals(expectedLines.subList(0, 1), list);
        }
      }
    
      public void testForEachLine() throws IOException {
        ImmutableList.Builder<String> builder = ImmutableList.builder();
        source.forEachLine(builder::add);
        assertExpectedLines(builder.build());
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 23 14:22:54 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/CharSourceTest.java

                    return list;
                  }
                });
        assertEquals(ImmutableList.of("foo"), list);
        assertTrue(lines.wasStreamOpened() && lines.wasStreamClosed());
      }
    
      public void testForEachLine() throws IOException {
        source = new TestCharSource(LINES);
    
        ImmutableList.Builder<String> builder = ImmutableList.builder();
        source.forEachLine(builder::add);
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/CharSourceTest.java

                    return list;
                  }
                });
        assertEquals(ImmutableList.of("foo"), list);
        assertTrue(lines.wasStreamOpened() && lines.wasStreamClosed());
      }
    
      public void testForEachLine() throws IOException {
        source = new TestCharSource(LINES);
    
        ImmutableList.Builder<String> builder = ImmutableList.builder();
        source.forEachLine(builder::add);
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 14:20:11 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top