Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for test_encodeUrlFilter (0.11 sec)

  1. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            assertEquals("98.76", systemHelper.getProductVersion());
        }
    
        public void test_getEnvMap() {
            assertNotNull(new SystemHelper().getEnvMap());
        }
    
        public void test_encodeUrlFilter() {
            String path = null;
            assertNull(systemHelper.encodeUrlFilter(path));
    
            path = "abc";
            assertEquals(path, systemHelper.encodeUrlFilter(path));
    
            path = "あいう";
    Registered: Mon Oct 28 08:04:08 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top