Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for test_instanceOf (0.39 sec)

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

            UnsupportedSearchException exception = new UnsupportedSearchException(message);
    
            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
        }
    
        public void test_instanceOf() {
            // Test inheritance hierarchy
            UnsupportedSearchException exception = new UnsupportedSearchException("test");
    
            assertTrue(exception instanceof UnsupportedSearchException);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/dict/DictionaryExpiredExceptionTest.java

            assertNotNull(exception);
            assertNull(exception.getMessage());
            assertNull(exception.getCause());
        }
    
        public void test_instanceOf() {
            // Test that exception is instance of RuntimeException
            DictionaryExpiredException exception = new DictionaryExpiredException();
            assertTrue(exception instanceof RuntimeException);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/util/ComponentUtilTest.java

            assertSame(result1, result2);
            assertSame(mockConfig, result1);
        }
    
        public void test_register_and_getComponent() {
            String testInstance = "test_instance";
            String componentName = "testComponent";
    
            ComponentUtil.register(testInstance, componentName);
    
            String retrieved = ComponentUtil.getComponent(componentName);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 7.3K bytes
    - Viewed (0)
Back to top