Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testGetUrlHost (0.05 seconds)

  1. src/test/java/org/codelibs/fess/util/IpAddressUtilTest.java

            assertEquals("example.com", IpAddressUtil.formatForUrl("example.com"));
    
            // Null
            assertNull(IpAddressUtil.formatForUrl(null));
        }
    
        @Test
        public void testGetUrlHost() throws UnknownHostException {
            // IPv4 localhost
            InetAddress ipv4Localhost = InetAddress.getByName("127.0.0.1");
            assertEquals("127.0.0.1", IpAddressUtil.getUrlHost(ipv4Localhost));
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 08:31:03 GMT 2025
    - 8.9K bytes
    - Click Count (0)
Back to Top