Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for test_parse_edgeCases (0.33 sec)

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

            assertEquals(3, tags.length);
    
            // Test with empty entries
            tags = PrunedTag.parse("div,,span,");
            assertEquals(2, tags.length);
        }
    
        public void test_parse_edgeCases() {
            // Test empty string
            PrunedTag[] tags = PrunedTag.parse("");
            assertEquals(0, tags.length);
    
            // Test null
            tags = PrunedTag.parse(null);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 21K bytes
    - Viewed (0)
Back to top