Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testMinus (0.2 sec)

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

          writer.write(buf, 0, read);
        }
        reader.close();
        writer.close();
    
        assertTrue(source.wasStreamClosed());
        assertEquals(STRING, writer.toString());
      }
    
      public void testLines() throws IOException {
        source = new TestCharSource(LINES);
    
        ImmutableList<String> lines;
        try (Stream<String> linesStream = source.lines()) {
          assertTrue(source.wasStreamOpened());
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 13K bytes
    - Viewed (0)
Back to top