Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testMemoryCacheWithBinaryData (0.22 sec)

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

            } catch (IOException e) {
                fail("Expected NullPointerException, not IOException");
            }
        }
    
        @Test
        public void testMemoryCacheWithBinaryData() throws IOException {
            // Test with binary data containing all byte values
            byte[] data = new byte[256];
            for (int i = 0; i < 256; i++) {
                data[i] = (byte) i;
            }
    
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Thu Jul 31 01:01:12 UTC 2025
    - 10.3K bytes
    - Viewed (0)
Back to top