Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for test_constructorWithNullMessage (0.15 sec)

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

            assertEquals(message, exception.getMessage());
            assertEquals(cause, exception.getCause());
            assertEquals("Root cause exception", exception.getCause().getMessage());
        }
    
        public void test_constructorWithNullMessage() {
            // Test constructor with null message
            ScheduledJobException exception = new ScheduledJobException(null);
    
            assertNull(exception.getMessage());
            assertNull(exception.getCause());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/StorageExceptionTest.java

            assertNotNull(exception);
            assertEquals(message, exception.getMessage());
            assertEquals(cause, exception.getCause());
        }
    
        public void test_constructorWithNullMessage() {
            // Test constructor with null message
            StorageException exception = new StorageException(null);
    
            assertNotNull(exception);
            assertNull(exception.getMessage());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exception/ThumbnailGenerationExceptionTest.java

            assertEquals(message, exception.getMessage());
            assertEquals(cause, exception.getCause());
            assertEquals("Image processing error", exception.getCause().getMessage());
        }
    
        public void test_constructorWithNullMessage() {
            // Test constructor with null message
            ThumbnailGenerationException exception = new ThumbnailGenerationException(null);
    
            assertNull(exception.getMessage());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exception/GsaConfigExceptionTest.java

            assertNotNull(exception.getCause());
            assertEquals(cause, exception.getCause());
            assertEquals("Root cause exception", exception.getCause().getMessage());
        }
    
        public void test_constructorWithNullMessage() {
            // Test constructor with null message
            GsaConfigException exception = new GsaConfigException(null);
    
            assertNotNull(exception);
            assertNull(exception.getMessage());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/exception/ThemeExceptionTest.java

            assertEquals(message, exception.getMessage());
            assertEquals(cause, exception.getCause());
            assertEquals("Config file not found", exception.getCause().getMessage());
        }
    
        public void test_constructorWithNullMessage() {
            // Test constructor with null message
            ThemeException exception = new ThemeException(null);
    
            assertNotNull(exception);
            assertNull(exception.getMessage());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/exception/SearchQueryExceptionTest.java

            assertEquals("java.lang.NullPointerException: Query object is null", exception.getMessage());
            assertTrue(exception instanceof FessSystemException);
        }
    
        public void test_constructorWithNullMessage() {
            // Test constructor with null message
            SearchQueryException exception = new SearchQueryException((String) null);
    
            assertNull(exception.getMessage());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.7K bytes
    - Viewed (0)
Back to top