Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for test_quoteEscape_null_input (0.13 seconds)

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

            // Emoji with quotes
            input = "\"🚀\" rocket";
            result = KuromojiCSVUtil.quoteEscape(input);
            assertEquals("\"\"🚀\"\" rocket", result);
        }
    
        @Test
        public void test_quoteEscape_null_input() {
            // Test null input handling
            try {
                KuromojiCSVUtil.quoteEscape(null);
                fail("Should throw NullPointerException for null input");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 18.9K bytes
    - Click Count (0)
Back to Top