Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for testError (0.04 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)
  3. android/guava-tests/test/com/google/common/io/CloserTest.java

        assertTrue(c2.isClosed());
    
        assertSuppressed(
            new Suppression(c2, tryException, c2Exception),
            new Suppression(c1, tryException, c1Exception));
      }
    
      public void testErrors() throws IOException {
        Closer closer = new Closer(suppressor);
    
        Error c1Exception = new Error();
        Error c2Exception = new Error();
        Error c3Exception = new Error();
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 11.8K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/io/CloserTest.java

        assertTrue(c2.isClosed());
    
        assertSuppressed(
            new Suppression(c2, tryException, c2Exception),
            new Suppression(c1, tryException, c1Exception));
      }
    
      public void testErrors() throws IOException {
        Closer closer = new Closer(suppressor);
    
        Error c1Exception = new Error();
        Error c2Exception = new Error();
        Error c3Exception = new Error();
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 11.8K bytes
    - Viewed (0)
Back to top