- Sort Score
- Result 10 results
- Languages All
Results 11 - 18 of 18 for test_constructor_withNullMessage (0.23 sec)
-
src/test/java/org/codelibs/fess/exception/LdapOperationExceptionTest.java
assertEquals(message, exception.getMessage()); assertEquals(cause, exception.getCause()); assertEquals("Connection timeout", exception.getCause().getMessage()); } public void test_constructor_withNullMessage() { // Test constructor with null message LdapOperationException exception = new LdapOperationException(null); assertNull(exception.getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ScriptEngineExceptionTest.java
assertEquals(message, exception.getMessage()); assertEquals(cause, exception.getCause()); assertEquals("Underlying error", exception.getCause().getMessage()); } public void test_constructor_withNullMessage() { // Test constructor with null message ScriptEngineException exception = new ScriptEngineException(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 - 7.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java
assertEquals("", exception.getUrl()); assertEquals(message, exception.getMessage()); assertFalse(exception.aborted()); } public void test_constructor_withNullMessage() { // Test with null message String url = "http://example.com/test"; String message = null; Exception cause = new RuntimeException("Error cause");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/FessSystemExceptionTest.java
assertTrue(exception.getMessage().contains(cause.getClass().getName())); assertTrue(exception.getMessage().contains("Cause exception")); } public void test_constructor_withNullMessage() { // Test constructor with null message FessSystemException exception = new FessSystemException((String) null); assertNull(exception.getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java
assertEquals(message, exception.getMessage()); assertEquals(cause, exception.getCause()); } public void test_constructor_withNullMessage() { // Test constructor with null message SsoProcessException exception = new SsoProcessException((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.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java
assertNull(exception.getType()); assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } public void test_constructor_withNullMessage() { // Test constructor with null message String type = "OAuth2"; String message = null; InvalidAccessTokenException exception = 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) -
src/test/java/org/codelibs/fess/exception/SsoMessageExceptionTest.java
assertEquals(message, exception.getMessage()); assertEquals(cause, exception.getCause()); assertNull(exception.getMessageCode()); } public void test_constructor_withNullMessage() { // Setup final VaMessenger<FessMessages> messageCode = messages -> messages.addErrorsSsoLoginError(UserMessages.GLOBAL_PROPERTY_KEY);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/InvalidQueryExceptionTest.java
assertEquals(message, exception.getMessage()); assertEquals(cause, exception.getCause()); assertNull(exception.getMessageCode()); } public void test_constructor_withNullMessage() { // Setup final VaMessenger<FessMessages> messageCode = messages -> messages.addErrorsInvalidQueryUnknown(UserMessages.GLOBAL_PROPERTY_KEY);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.6K bytes - Viewed (0)