Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testIsPathSafe_NullPath (0.14 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

            } catch (final IllegalArgumentException e) {
                // Expected
            }
        }
    
        /**
         * Test isPathSafe with null path throws exception
         */
        @Test
        public void testIsPathSafe_NullPath() {
            final Path baseDir = tempFolder.getRoot().toPath();
            try {
                FileUtil.isPathSafe((Path) null, baseDir);
                fail("Expected IllegalArgumentException");
    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