- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for test_fillInStackTrace (0.1 seconds)
-
src/test/java/org/codelibs/fess/dict/DictionaryExpiredExceptionTest.java
String localizedMessage = exception.getLocalizedMessage(); assertNull(localizedMessage); } @Test public void test_fillInStackTrace() { // Test fillInStackTrace method DictionaryExpiredException exception = new DictionaryExpiredException(); Throwable result = exception.fillInStackTrace(); assertNotNull(result);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 7.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java
UnsupportedSearchException exception = new UnsupportedSearchException(message); assertEquals(exception.getMessage(), exception.getLocalizedMessage()); } @Test public void test_fillInStackTrace() { // Test fillInStackTrace method UnsupportedSearchException exception = new UnsupportedSearchException("Stack trace test");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 8.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java
assertEquals(retrievedMessage, exception.getMessage()); assertEquals(retrievedMessage, exception.getMessage()); } @Test public void test_fillInStackTrace() { // Test fillInStackTrace method ResultOffsetExceededException exception = new ResultOffsetExceededException("Stack trace test");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/UserRoleLoginExceptionTest.java
assertNotNull(actionClass); assertEquals(RootAction.class, actionClass); assertEquals("org.codelibs.fess.app.web.RootAction", actionClass.getName()); } @Test public void test_fillInStackTrace() { // Test fillInStackTrace returns null for performance optimization UserRoleLoginException exception = new UserRoleLoginException(RootAction.class); Throwable result = exception.fillInStackTrace();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11K bytes - Click Count (0)