Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_constructor_twoParametersWithBothNull (0.43 sec)

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

            assertNull(exception.getMessage());
            assertNull(exception.getCause());
            assertEquals(messageCode, exception.getMessageCode());
        }
    
        public void test_constructor_twoParametersWithBothNull() {
            // Execute
            final SsoMessageException exception = new SsoMessageException(null, null);
    
            // Verify
            assertNotNull(exception);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/InvalidQueryExceptionTest.java

            assertNull(exception.getMessage());
            assertNull(exception.getCause());
            assertEquals(messageCode, exception.getMessageCode());
        }
    
        public void test_constructor_twoParametersWithBothNull() {
            // Execute
            final InvalidQueryException exception = new InvalidQueryException(null, null);
    
            // Verify
            assertNotNull(exception);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.6K bytes
    - Viewed (0)
Back to top