Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_constructorWithEmptyErrors (0.75 sec)

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

            assertEquals(100, response.getTook());
            assertTrue(response.hasError());
            assertEquals(2, response.getErrors().size());
        }
    
        @Test
        public void test_constructorWithEmptyErrors() throws Exception {
            List<Throwable> errors = new ArrayList<>();
    
            SuggestDeleteResponse response = new SuggestDeleteResponse(errors, 100);
    
            assertNotNull(response);
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Thu Nov 13 00:40:54 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/suggest/index/SuggestIndexResponseTest.java

            assertEquals(100, response.getTook());
            assertTrue(response.hasError());
            assertEquals(2, response.getErrors().size());
        }
    
        @Test
        public void test_constructorWithEmptyErrors() throws Exception {
            List<Throwable> errors = new ArrayList<>();
    
            SuggestIndexResponse response = new SuggestIndexResponse(10, 5, errors, 100);
    
            assertNotNull(response);
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Thu Nov 13 00:40:54 UTC 2025
    - 4.2K bytes
    - Viewed (0)
Back to top