Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testConvertWithLongText (0.08 sec)

  1. src/test/java/org/codelibs/fess/suggest/converter/AnalyzerConverterTest.java

            String field = null;
    
            List<String> results = converter.convert(text, field, "en");
    
            assertNotNull(results);
        }
    
        @Test
        public void testConvertWithLongText() throws IOException {
            // Test convert with long text
            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < 100; i++) {
                sb.append("word").append(i).append(" ");
            }
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Mon Sep 01 13:33:03 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/suggest/converter/ReadingConverterTest.java

            assertNotNull(readings);
            assertEquals(1, readings.size());
            assertEquals("  TEST  \n\t  TEXT  ", readings.get(0));
        }
    
        @Test
        public void testConvertWithLongText() throws IOException {
            // Test convert with long text
            converter.init();
            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < 1000; i++) {
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Mon Sep 01 13:33:03 UTC 2025
    - 13.5K bytes
    - Viewed (0)
Back to top