Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testReadBytes_CustomMaxSize_ExceedsLimit (0.25 seconds)

  1. src/test/java/org/codelibs/core/io/FileUtilTest.java

        }
    
        /**
         * Test readBytes with custom maxSize - file exceeds limit
         *
         * @throws Exception
         */
        @Test(expected = IORuntimeException.class)
        public void testReadBytes_CustomMaxSize_ExceedsLimit() throws Exception {
            final File file = tempFolder.newFile("medium.txt");
            final byte[] data = new byte[1024]; // 1KB
            final FileOutputStream out = new FileOutputStream(file);
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat Nov 22 11:21:59 GMT 2025
    - 10.3K bytes
    - Click Count (0)
Back to Top