Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_stackTracePresent (0.08 sec)

  1. src/test/java/org/codelibs/fess/exception/ScheduledJobExceptionTest.java

            assertTrue(exception instanceof RuntimeException);
            assertTrue(exception instanceof Exception);
            assertTrue(exception instanceof Throwable);
        }
    
        public void test_stackTracePresent() {
            // Test that stack trace is captured properly
            ScheduledJobException exception = new ScheduledJobException("Stack trace test");
    
            assertNotNull(exception.getStackTrace());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java

            // CommandExecutionException extends RuntimeException, not Error
            assertTrue(exception instanceof RuntimeException);
        }
    
        public void test_stackTracePresent() {
            // Test that stack trace is properly captured
            CommandExecutionException exception = new CommandExecutionException("Stack trace test");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.2K bytes
    - Viewed (0)
Back to top