Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for test_chainWithCustomNormalizer (0.12 seconds)

  1. src/test/java/org/codelibs/fess/suggest/normalizer/NormalizerChainTest.java

            chain.add(normalizer3);
    
            String result = chain.normalize("test", "field");
    
            assertEquals("test-1-2-3", result);
        }
    
        @Test
        public void test_chainWithCustomNormalizer() throws Exception {
            NormalizerChain chain = new NormalizerChain();
            chain.add((text, field, langs) -> text.trim());
            chain.add((text, field, langs) -> text.toLowerCase());
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Mon Nov 17 14:23:01 GMT 2025
    - 4.3K bytes
    - Click Count (0)
Back to Top