- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for testConvertWithJapaneseText (0.11 seconds)
-
src/test/java/org/codelibs/fess/suggest/converter/AnalyzerConverterTest.java
String field = "content"; List<String> results = converter.convert(text, field, "en"); assertNotNull(results); } @Test public void testConvertWithJapaneseText() throws IOException { // Test convert with Japanese text String text = "テスト"; String field = "content"; List<String> results = converter.convert(text, field, "ja");
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Sep 01 13:33:03 GMT 2025 - 12.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/converter/ReadingConverterTest.java
assertNotNull(readings); assertEquals(1, readings.size()); assertEquals("TEST@#$%123", readings.get(0)); } @Test public void testConvertWithJapaneseText() throws IOException { // Test convert with Japanese text testConverter.setJapaneseMode(true); converter.init(); String text = "東京"; String field = "content";Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Sep 01 13:33:03 GMT 2025 - 13.5K bytes - Click Count (0)