Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for test_serialVersionUID (1.39 sec)

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

            // Verify that stack trace is not generated
            StackTraceElement[] stackTrace = exception.getStackTrace();
            assertEquals(0, stackTrace.length);
        }
    
        public void test_serialVersionUID() {
            // Test that serialVersionUID is correctly defined
            UserRoleLoginException exception = new UserRoleLoginException(RootAction.class);
            // Verify exception is serializable
    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/dict/DictionaryExceptionTest.java

                    foundTestMethod = true;
                    break;
                }
            }
            assertTrue(foundTestMethod);
        }
    
        public void test_serialVersionUID() {
            // Test that serialVersionUID is defined (by checking serializability)
            DictionaryException exception = new DictionaryException("Serialization test");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exception/ScheduledJobExceptionTest.java

                assertEquals(expectedCause, e.getCause());
                assertTrue(e.getCause() instanceof NullPointerException);
            }
    
            assertTrue(exceptionCaught);
        }
    
        public void test_serialVersionUID() {
            // Test that the exception is serializable
            ScheduledJobException exception = new ScheduledJobException("Serialization test");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exception/StorageExceptionTest.java

            } catch (StorageException e) {
                assertEquals(expectedMessage, e.getMessage());
                assertEquals(expectedCause, e.getCause());
            }
        }
    
        public void test_serialVersionUID() {
            // Test that the exception is serializable
            StorageException exception = new StorageException("Test serialization");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/exception/ContainerNotAvailableExceptionTest.java

            assertTrue(exception instanceof FessSystemException);
            assertTrue(exception instanceof RuntimeException);
        }
    
        public void test_serialVersionUID() {
            // Test that serialVersionUID is properly defined
            ContainerNotAvailableException exception1 = new ContainerNotAvailableException("test");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/exception/LdapOperationExceptionTest.java

            assertTrue(exception instanceof RuntimeException);
            assertTrue(exception instanceof Exception);
            assertTrue(exception instanceof Throwable);
        }
    
        public void test_serialVersionUID() {
            // Test that exception is serializable
            String message = "Serialization test";
            LdapOperationException exception = new LdapOperationException(message);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/exception/ThemeExceptionTest.java

                    foundTestMethod = true;
                    break;
                }
            }
            assertTrue(foundTestMethod);
        }
    
        public void test_serialVersionUID() {
            // Test that the exception is serializable
            ThemeException exception = new ThemeException("Serialization test");
    
            // Verify that the exception can be created and has the expected structure
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/exception/PluginExceptionTest.java

            assertEquals(this.getClass().getName(), firstElement.getClassName());
            assertEquals("test_stackTrace", firstElement.getMethodName());
        }
    
        public void test_serialVersionUID() {
            // Test that the exception is serializable
            PluginException exception = new PluginException("Serialization test");
    
            // The exception should be serializable since it extends RuntimeException
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java

            assertEquals(rootCause, exception.getCause().getCause());
            assertEquals("Root cause", exception.getCause().getCause().getMessage());
        }
    
        public void test_serialVersionUID() {
            // Test that serialVersionUID is properly set
            CommandExecutionException exception1 = new CommandExecutionException("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)
  10. src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java

                assertPropertyNotNull(property);
            }
        }
    
        /**
         * Test serialVersionUID exists and has correct value
         */
        public void test_serialVersionUID() throws Exception {
            Field serialVersionField = FessLabels.class.getDeclaredField("serialVersionUID");
            assertNotNull(serialVersionField);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.8K bytes
    - Viewed (0)
Back to top