Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_mixedWithOtherCharacters (1.2 sec)

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

            String result = normalizer.normalize("abc123", "field");
    
            assertEquals("abc123", result);
        }
    
        @Test
        public void test_mixedWithOtherCharacters() throws Exception {
            FullWidthToHalfWidthAlphabetNormalizer normalizer = new FullWidthToHalfWidthAlphabetNormalizer();
    
            String result = normalizer.normalize("abc あいう 123", "field");
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 17 14:23:01 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/suggest/normalizer/HankakuKanaToZenkakuKanaTest.java

            String result = normalizer.normalize("ヲ", "field");
    
            assertEquals("ヲ", result);
        }
    
        @Test
        public void test_mixedWithOtherCharacters() throws Exception {
            HankakuKanaToZenkakuKana normalizer = new HankakuKanaToZenkakuKana();
    
            String result = normalizer.normalize("abc アイウ 123", "field");
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 17 14:23:01 UTC 2025
    - 6.1K bytes
    - Viewed (0)
Back to top