- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 21 for test_stackTrace (0.06 sec)
- 
				
				src/test/java/org/codelibs/fess/exception/JobProcessingExceptionTest.javaassertTrue(exception instanceof RuntimeException); assertTrue(exception instanceof Exception); assertTrue(exception instanceof Throwable); } public void test_stackTrace() { // Test that stack trace is properly captured final JobProcessingException exception = new JobProcessingException("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 - 7K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.javaassertEquals("Top level error", exception.getMessage()); assertEquals(middleCause, exception.getCause()); assertEquals(rootCause, exception.getCause().getCause()); } public void test_stackTrace() { // Test that stack trace is properly set DataStoreException exception = new DataStoreException("Test error"); StackTraceElement[] stackTrace = exception.getStackTrace(); Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.7K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/fess/exception/QueryParseExceptionTest.javaassertNotNull(cause); assertTrue(cause instanceof ParseException); assertEquals(parseException, cause); assertEquals("Query parsing failed", cause.getMessage()); } public void test_stackTrace() { // Test that stack trace is properly set ParseException parseException = new ParseException("Stack trace test"); QueryParseException queryParseException = new QueryParseException(parseException); Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.2K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/fess/exception/FessUserNotFoundExceptionTest.java// Both instances should be of the same class assertEquals(exception1.getClass(), exception2.getClass()); } public void test_stackTrace() { // Test that the exception has a proper stack trace FessUserNotFoundException exception = new FessUserNotFoundException("testuser"); StackTraceElement[] stackTrace = exception.getStackTrace();Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.6K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/fess/exception/ServletRuntimeExceptionTest.javaassertTrue(runtimeException instanceof RuntimeException); assertTrue(runtimeException instanceof Exception); assertTrue(runtimeException instanceof Throwable); } public void test_stackTrace() { // Create a ServletException with a specific message String errorMessage = "Stack trace test error"; ServletException servletException = new ServletException(errorMessage); Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.8K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/fess/exception/ScriptEngineExceptionTest.java// Verify the exception can be created and basic properties work assertNotNull(exception); assertEquals("Serialization test", exception.getMessage()); } public void test_stackTrace() { // Test that stack trace is properly maintained String message = "Stack trace test"; Exception cause = new IllegalArgumentException("Invalid argument");Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.5K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/fess/exception/SsoLoginExceptionTest.javaassertTrue(exception instanceof RuntimeException); assertTrue(exception instanceof Exception); assertTrue(exception instanceof Throwable); } public void test_stackTrace() { // Test that stack trace is properly captured SsoLoginException exception = new SsoLoginException("Stack trace test"); StackTraceElement[] stackTrace = exception.getStackTrace(); Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0)
- 
				
				fess-crawler/src/test/java/org/codelibs/fess/crawler/exception/CrawlerSystemExceptionTest.javaassertNotNull(exception); assertNull(exception.getMessage()); assertNull(exception.getCause()); } /** * Test stack trace functionality */ public void test_stackTrace() { CrawlerSystemException exception = new CrawlerSystemException("Stack trace test"); StackTraceElement[] stackTrace = exception.getStackTrace(); assertNotNull(stackTrace); Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 20K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/fess/exception/GsaConfigExceptionTest.javaassertNotNull(exception); // The serialVersionUID field exists and is accessible at compile time assertTrue(exception instanceof java.io.Serializable); } public void test_stackTrace() { // Test that stack trace is properly preserved String message = "GSA error with stack trace"; Throwable cause = new NullPointerException("NPE occurred"); Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.3K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/fess/exception/WebApiExceptionTest.java// This test confirms the exception can be created and has standard exception properties assertNotNull(exception); assertTrue(exception instanceof java.io.Serializable); } public void test_stackTrace() { // Test that stack trace is preserved int statusCode = 500; String message = "Error occurred"; WebApiException exception = new WebApiException(statusCode, message);Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0)