Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for test_quoteEscape_null_input (0.27 sec)

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

            // Emoji with quotes
            input = "\"🚀\" rocket";
            result = KuromojiCSVUtil.quoteEscape(input);
            assertEquals("\"\"🚀\"\" rocket", result);
        }
    
        public void test_quoteEscape_null_input() {
            // Test null input handling
            try {
                KuromojiCSVUtil.quoteEscape(null);
                fail("Should throw NullPointerException for null input");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 18.7K bytes
    - Viewed (0)
Back to top