Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for test_fillInStackTrace (0.09 sec)

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

            assertNotNull(actionClass);
            assertEquals(RootAction.class, actionClass);
            assertEquals("org.codelibs.fess.app.web.RootAction", actionClass.getName());
        }
    
        public void test_fillInStackTrace() {
            // Test fillInStackTrace returns null for performance optimization
            UserRoleLoginException exception = new UserRoleLoginException(RootAction.class);
            Throwable result = exception.fillInStackTrace();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java

            UnsupportedSearchException exception = new UnsupportedSearchException(message);
    
            assertEquals(exception.getMessage(), exception.getLocalizedMessage());
        }
    
        public void test_fillInStackTrace() {
            // Test fillInStackTrace method
            UnsupportedSearchException exception = new UnsupportedSearchException("Stack trace test");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exception/JobNotFoundExceptionTest.java

                    foundTestMethod = true;
                    break;
                }
            }
            assertTrue(foundTestMethod);
        }
    
        public void test_fillInStackTrace() {
            // Test that fillInStackTrace works properly
            JobNotFoundException exception = new JobNotFoundException("Fill stack trace test");
    
            Throwable filled = exception.fillInStackTrace();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/dict/DictionaryExpiredExceptionTest.java

            String localizedMessage = exception.getLocalizedMessage();
    
            assertNull(localizedMessage);
        }
    
        public void test_fillInStackTrace() {
            // Test fillInStackTrace method
            DictionaryExpiredException exception = new DictionaryExpiredException();
            Throwable result = exception.fillInStackTrace();
    
            assertNotNull(result);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java

            assertNotNull(toString);
            assertTrue(toString.contains("DataStoreException"));
            assertTrue(toString.contains(message));
        }
    
        public void test_fillInStackTrace() {
            // Test fillInStackTrace method
            DataStoreException exception = new DataStoreException("Stack trace test");
            Throwable filled = exception.fillInStackTrace();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java

            // Test that multiple calls return the same message
            assertEquals(retrievedMessage, exception.getMessage());
            assertEquals(retrievedMessage, exception.getMessage());
        }
    
        public void test_fillInStackTrace() {
            // Test fillInStackTrace method
            ResultOffsetExceededException exception = new ResultOffsetExceededException("Stack trace test");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.6K bytes
    - Viewed (0)
Back to top