Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_numMatchesWordsSize (0.22 sec)

  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);
            }
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Thu Nov 13 00:40:54 UTC 2025
    - 5.6K bytes
    - Viewed (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);
            }
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 6.4K bytes
    - Viewed (0)
Back to top