Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_indexFromSearchWord (0.66 sec)

  1. src/test/java/org/codelibs/fess/suggest/index/SuggestIndexerTest.java

            assertNotNull(response);
            assertEquals(2, response.getNumberOfInputDocs());
            assertFalse(response.hasError());
        }
    
        @Test
        public void test_indexFromSearchWord() throws Exception {
            String searchWord = "検索 エンジン";
            String[] fields = new String[] { "content" };
            String[] tags = new String[] { "tag1" };
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 28.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/suggest/SuggesterTest.java

            SuggestResponse response = suggester.suggest().setQuery("test").setSuggestDetail(true).execute().getResponse();
            assertEquals(1, response.getNum());
        }
    
        @Test
        public void test_indexFromSearchWord() throws Exception {
            SuggestIndexResponse indexResponse = suggester.indexer().indexFromSearchWord("検索  エンジン", null, null, null, 1, null);
            indexResponse.getErrors();
            suggester.refresh();
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 37.4K bytes
    - Viewed (0)
Back to top