Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Ng (0.13 sec)

  1. src/test/java/org/codelibs/fess/validation/UriTypeValidatorTest.java

            values = "http://www.foo.com/\nhttps://www.bar.com/\n http://www.baz.com/";
            assertTrue(UriTypeValidator.check(protocols, values));
        }
    
        public void test_check_ng() {
            String[] protocols;
            String values;
    
            protocols = new String[] { "http:" };
            values = "https://www.foo.com/";
            assertFalse(UriTypeValidator.check(protocols, values));
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.2K bytes
    - Viewed (0)
Back to top