Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for test_numMatchesWordsSize (0.16 seconds)

  1. src/test/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsResponseTest.java

            assertEquals(0, response.getTotal());
            assertEquals(0, response.getWords().size());
            assertEquals(0, response.getItems().size());
        }
    
        @Test
        public void test_numMatchesWordsSize() throws Exception {
            List<String> words = new ArrayList<>();
            for (int i = 0; i < 10; i++) {
                words.add("word" + i);
            }
    
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Thu Nov 13 00:40:54 GMT 2025
    - 5.6K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/suggest/request/suggest/SuggestResponseTest.java

            assertEquals(0, response.getTotal());
            assertEquals(0, response.getWords().size());
            assertEquals(0, response.getItems().size());
        }
    
        @Test
        public void test_numMatchesWordsSize() throws Exception {
            List<String> words = new ArrayList<>();
            for (int i = 0; i < 5; i++) {
                words.add("word" + i);
            }
    
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Mon Nov 24 03:40:05 GMT 2025
    - 6.4K bytes
    - Click Count (0)
Back to Top