- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for test_fillInStackTrace (0.09 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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/DataStoreExceptionTest.java
assertNotNull(toString); assertTrue(toString.contains("DataStoreException")); assertTrue(toString.contains(message)); } @Test public void test_fillInStackTrace() { // Test fillInStackTrace method DataStoreException exception = new DataStoreException("Stack trace test"); Throwable filled = exception.fillInStackTrace();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 8.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/JobNotFoundExceptionTest.java
foundTestMethod = true; break; } } assertTrue(foundTestMethod); } @Test public void test_fillInStackTrace() { // Test that fillInStackTrace works properly JobNotFoundException exception = new JobNotFoundException("Fill stack trace test"); Throwable filled = exception.fillInStackTrace();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 9.2K 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)