Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testClosesOnErrors_copyingToWriterThatThrows (0.25 sec)

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

        assertThrows(IOException.class, () -> failSource.copyTo(new TestCharSink()));
        assertTrue(failSource.wasStreamClosed());
      }
    
      public void testClosesOnErrors_copyingToWriterThatThrows() {
        TestCharSource okSource = new TestCharSource(STRING);
        assertThrows(IOException.class, () -> okSource.copyTo(new TestWriter(WRITE_THROWS)));
        assertTrue(okSource.wasStreamClosed());
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/CharSourceTest.java

        assertThrows(IOException.class, () -> failSource.copyTo(new TestCharSink()));
        assertTrue(failSource.wasStreamClosed());
      }
    
      public void testClosesOnErrors_copyingToWriterThatThrows() {
        TestCharSource okSource = new TestCharSource(STRING);
        assertThrows(IOException.class, () -> okSource.copyTo(new TestWriter(WRITE_THROWS)));
        assertTrue(okSource.wasStreamClosed());
      }
    
    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