Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for test_isUrlChar_otherAllowedChars (1.13 sec)

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

        }
    
        public void test_isUrlChar_brackets() {
            // Test brackets
            assertTrue(CharUtil.isUrlChar('['));
            assertTrue(CharUtil.isUrlChar(']'));
        }
    
        public void test_isUrlChar_otherAllowedChars() {
            // Test other allowed characters
            assertTrue(CharUtil.isUrlChar('@'));
            assertTrue(CharUtil.isUrlChar('~'));
            assertTrue(CharUtil.isUrlChar('!'));
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 5.6K bytes
    - Viewed (0)
Back to top