Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for test_serialVersionUID (0.26 sec)

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

            StackTraceElement[] stackTrace = queryParseException.getStackTrace();
            assertNotNull(stackTrace);
            assertTrue(stackTrace.length > 0);
        }
    
        public void test_serialVersionUID() {
            // Test that the exception is serializable
            ParseException parseException = new ParseException("Serialization test");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/FessUserNotFoundExceptionTest.java

            assertTrue(exception instanceof RuntimeException);
            assertTrue(exception instanceof Exception);
            assertTrue(exception instanceof Throwable);
        }
    
        public void test_serialVersionUID() {
            // Test that the exception has a serialVersionUID field
            FessUserNotFoundException exception1 = new FessUserNotFoundException("user1");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exception/FessSystemExceptionTest.java

            assertEquals("Top level", topException.getMessage());
            assertEquals(middleCause, topException.getCause());
            assertEquals(rootCause, topException.getCause().getCause());
        }
    
        public void test_serialVersionUID() {
            // Test that serialVersionUID is properly defined
            FessSystemException exception1 = new FessSystemException("Test");
            FessSystemException exception2 = new FessSystemException("Test");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java

            assertEquals(middleCause, topException.getCause());
            assertEquals(rootCause, topException.getCause().getCause());
        }
    
        public void test_serialVersionUID() {
            // Test that serialVersionUID is properly defined
            SsoProcessException exception1 = new SsoProcessException("Test");
            SsoProcessException exception2 = new SsoProcessException("Test");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java

            assertEquals("Type2", exception2.getType());
            assertEquals("Message2", exception2.getMessage());
    
            assertNotSame(exception1, exception2);
        }
    
        public void test_serialVersionUID() {
            // Test that serialVersionUID is properly defined
            InvalidAccessTokenException exception1 = new InvalidAccessTokenException("Type", "Message");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/mylasta/action/FessMessagesTest.java

            assertEquals("{success.crud_delete_crud_table}", FessMessages.SUCCESS_crud_delete_crud_table);
        }
    
        // Test serialization
        public void test_serialVersionUID() {
            assertEquals(1L, getSerialVersionUID());
        }
    
        private long getSerialVersionUID() {
            try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 28.2K bytes
    - Viewed (0)
Back to top