- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for test_constructorWithEmptyMessage (0.18 sec)
-
src/test/java/org/codelibs/fess/exception/ScheduledJobExceptionTest.java
ScheduledJobException exception = new ScheduledJobException(null, null); assertNull(exception.getMessage()); assertNull(exception.getCause()); } public void test_constructorWithEmptyMessage() { // Test constructor with empty message String message = ""; ScheduledJobException exception = new ScheduledJobException(message);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/StorageExceptionTest.java
assertNotNull(exception); assertNull(exception.getMessage()); assertNull(exception.getCause()); } public void test_constructorWithEmptyMessage() { // Test constructor with empty message String message = ""; StorageException exception = new StorageException(message); assertNotNull(exception);
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/ThumbnailGenerationExceptionTest.java
ThumbnailGenerationException exception = new ThumbnailGenerationException(null, null); assertNull(exception.getMessage()); assertNull(exception.getCause()); } public void test_constructorWithEmptyMessage() { // Test constructor with empty message String message = ""; ThumbnailGenerationException exception = new ThumbnailGenerationException(message);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/GsaConfigExceptionTest.java
assertNotNull(exception.getCause()); assertEquals(cause, exception.getCause()); assertEquals("Invalid argument", exception.getCause().getMessage()); } public void test_constructorWithEmptyMessage() { // Test constructor with empty message String message = ""; GsaConfigException exception = new GsaConfigException(message); assertNotNull(exception);
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/ThemeExceptionTest.java
assertNotNull(exception); assertNull(exception.getMessage()); assertNull(exception.getCause()); } public void test_constructorWithEmptyMessage() { // Test constructor with empty message String message = ""; ThemeException exception = new ThemeException(message); assertNotNull(exception);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/SearchQueryExceptionTest.java
assertNull(exception.getMessage()); assertNull(exception.getCause()); assertTrue(exception instanceof FessSystemException); } public void test_constructorWithEmptyMessage() { // Test constructor with empty message String message = ""; SearchQueryException exception = new SearchQueryException(message);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0)