Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for test_read_delegatesToUnderlying (1.76 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/IgnoreCloseInputStreamTest.java

            // Should still be able to read
            assertEquals('e', stream.read());
            assertEquals('s', stream.read());
            assertEquals('t', stream.read());
        }
    
        public void test_read_delegatesToUnderlying() throws IOException {
            // Test that read() delegates to underlying stream
            byte[] data = "ABC".getBytes();
            InputStream underlyingStream = new ByteArrayInputStream(data);
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 6.6K bytes
    - Viewed (0)
Back to top