Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testSingleByteWrites (0.46 sec)

  1. src/test/java/org/codelibs/curl/io/ContentOutputStreamTest.java

            cos.write(new byte[] {});
            assertTrue(cos.isInMemory());
            assertFalse(cos.done);
            cos.close();
        }
    
        @Test
        public void testSingleByteWrites() throws IOException {
            // Writing one byte at a time
            ContentOutputStream cos = new ContentOutputStream(5, Curl.tmpDir);
            for (int i = 0; i < 3; i++) {
                cos.write(i);
            }
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Wed Nov 12 14:01:04 UTC 2025
    - 9.9K bytes
    - Viewed (0)
Back to top