Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for test_parse_quoted_values (0.22 seconds)

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

            value = "\"Fess\"Fess\"";
            expected = Arrays.asList();
            actual = Arrays.asList(KuromojiCSVUtil.parse(value));
            assertThat(actual, is(expected));
        }
    
        @Test
        public void test_parse_quoted_values() {
            String value;
            String[] result;
    
            // Simple quoted value - quotes are removed
            value = "\"simple\"";
            result = KuromojiCSVUtil.parse(value);
    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