Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_getErrors (0.7 sec)

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

            errors.add(new Exception("Test error"));
            SuggestIndexResponse response2 = new SuggestIndexResponse(10, 5, errors, 100);
            assertTrue(response2.hasError());
        }
    
        @Test
        public void test_getErrors() throws Exception {
            List<Throwable> errors = new ArrayList<>();
            errors.add(new Exception("Error 1"));
            errors.add(new RuntimeException("Error 2"));
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Thu Nov 13 00:40:54 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/suggest/index/SuggestDeleteResponseTest.java

            errors.add(new Exception("Test error"));
            SuggestDeleteResponse response2 = new SuggestDeleteResponse(errors, 100);
            assertTrue(response2.hasError());
        }
    
        @Test
        public void test_getErrors() throws Exception {
            List<Throwable> errors = new ArrayList<>();
            errors.add(new Exception("Error 1"));
            errors.add(new RuntimeException("Error 2"));
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Thu Nov 13 00:40:54 UTC 2025
    - 3.9K bytes
    - Viewed (0)
Back to top