- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for test_new (0.05 sec)
-
src/test/java/org/codelibs/fess/suggest/index/writer/SuggestIndexWriterTest.java
} @Test public void test_writeWithUpdateButNonExistentItem() throws Exception { String[][] readings = new String[1][]; readings[0] = new String[] { "test_new" }; SuggestItem item = new SuggestItem(new String[] { "テスト新規" }, readings, new String[] { "content" }, 1, 0, -1,Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 18.2K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlTest.java
import org.codelibs.curl.Curl.Method; import org.junit.Test; public class CurlTest { private static final Logger logger = Logger.getLogger(CurlTest.class.getName()); @Test public void test_Get() { Curl.get("https://www.codelibs.org/").execute(response -> { final String content = response.getContentAsString(); logger.info(content); assertTrue(content.length() > 0);Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Thu Nov 20 13:34:13 UTC 2025 - 16.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/normalizer/HankakuKanaToZenkakuKanaTest.java
String result = normalizer.normalize("。「」、・", "field"); assertEquals("。「」、・", result); } @Test public void test_n() throws Exception { HankakuKanaToZenkakuKana normalizer = new HankakuKanaToZenkakuKana(); String result = normalizer.normalize("ニホン", "field"); assertEquals("ニホン", result); }Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:23:01 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/converter/ReadingConverterTest.java
String field = "content"; List<String> readings = converter.convert(text, field, "en", "ja", "fr"); assertNotNull(readings); assertEquals(3, readings.size()); assertEquals("TEST_en", readings.get(0)); assertEquals("TEST_ja", readings.get(1)); assertEquals("TEST_fr", readings.get(2)); } @Test public void testConvertWithNoLanguages() throws IOException {
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 13.5K bytes - Viewed (0)