Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for test_hasError (0.06 seconds)

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

        public void test_getTook() throws Exception {
            SuggestDeleteResponse response = new SuggestDeleteResponse(null, 250);
    
            assertEquals(250, response.getTook());
        }
    
        @Test
        public void test_hasError() throws Exception {
            SuggestDeleteResponse response1 = new SuggestDeleteResponse(null, 100);
            assertFalse(response1.hasError());
    
            List<Throwable> errors = new ArrayList<>();
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Thu Nov 13 00:40:54 GMT 2025
    - 3.9K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/suggest/index/SuggestIndexResponseTest.java

        public void test_getTook() throws Exception {
            SuggestIndexResponse response = new SuggestIndexResponse(10, 5, null, 250);
    
            assertEquals(250, response.getTook());
        }
    
        @Test
        public void test_hasError() throws Exception {
            SuggestIndexResponse response1 = new SuggestIndexResponse(10, 5, null, 100);
            assertFalse(response1.hasError());
    
            List<Throwable> errors = new ArrayList<>();
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Thu Nov 13 00:40:54 GMT 2025
    - 4.2K bytes
    - Click Count (0)
Back to Top