Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestError (3.12 sec)

  1. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

        }
    
        public void test_addUpdateConfigListener_withException() {
            systemHelper.addUpdateConfigListener("TestError", () -> {
                throw new RuntimeException("Test error");
            });
            final String result = systemHelper.updateConfiguration();
            assertTrue(result.contains("TestError:"));
            assertTrue(result.contains("Test error"));
        }
    
        public void test_getFilteredEnvMap_emptyKey() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

                        failureUrl.setId("E" + i);
                        failureUrl.setUrl("http://test.com/" + i + ".html");
                        failureUrl.setErrorCount(i);
                        failureUrl.setErrorName("TestError" + i);
                        list.add(failureUrl);
                    }
                    return list;
                }
            }, FailureUrlBhv.class.getCanonicalName());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 34.9K bytes
    - Viewed (0)
Back to top