Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for test_inheritance (1.45 sec)

  1. src/test/java/org/codelibs/fess/validation/FessActionValidatorTest.java

            assertEquals("FessActionValidator should be in correct package", "org.codelibs.fess.validation.FessActionValidator",
                    FessActionValidator.class.getName());
        }
    
        public void test_inheritance() {
            assertTrue("FessActionValidator should extend ActionValidator", ActionValidator.class.isAssignableFrom(FessActionValidator.class));
        }
    
        public void test_constructorExists() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/validation/CustomSizeValidatorTest.java

                assertTrue("Required methods exist", true);
            } catch (final NoSuchMethodException e) {
                fail("Required methods should exist: " + e.getMessage());
            }
        }
    
        public void test_inheritance() {
            assertTrue("Should implement ConstraintValidator interface",
                    jakarta.validation.ConstraintValidator.class.isAssignableFrom(CustomSizeValidator.class));
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exception/ThemeExceptionTest.java

            assertNotNull(exception);
            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
        }
    
        public void test_inheritance() {
            // Test that ThemeException properly extends FessSystemException
            ThemeException exception = new ThemeException("Test");
    
            assertTrue(exception instanceof FessSystemException);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exception/LdapConfigurationExceptionTest.java

            assertNotNull(exception);
            assertEquals(longMessage, exception.getMessage());
            assertNull(exception.getCause());
        }
    
        public void test_inheritance() {
            // Test that LdapConfigurationException extends FessSystemException
            LdapConfigurationException exception = new LdapConfigurationException("test");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/timer/HotThreadMonitorTargetTest.java

        private HotThreadMonitorTarget target;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            target = new HotThreadMonitorTarget();
        }
    
        public void test_inheritance() {
            assertTrue("HotThreadMonitorTarget should extend MonitorTarget",
                    MonitorTarget.class.isAssignableFrom(HotThreadMonitorTarget.class));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/exception/SsoLoginExceptionTest.java

            assertEquals(message, exception3.getMessage());
            assertTrue(exception3.getCause() instanceof NullPointerException);
        }
    
        public void test_inheritance() {
            // Test that SsoLoginException extends FessSystemException
            SsoLoginException exception = new SsoLoginException("Test");
    
            assertTrue(exception instanceof FessSystemException);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java

        private SystemMonitorTarget target;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            target = new SystemMonitorTarget();
        }
    
        public void test_inheritance() {
            assertTrue("SystemMonitorTarget should extend MonitorTarget", MonitorTarget.class.isAssignableFrom(SystemMonitorTarget.class));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/tomcat/valve/SuppressErrorReportValveTest.java

            valve.setShowServerInfo(true);
            assertTrue(valve.isShowServerInfo());
    
            valve.setShowServerInfo(false);
            assertFalse(valve.isShowServerInfo());
        }
    
        public void test_inheritance() {
            assertTrue(valve instanceof org.apache.catalina.valves.ErrorReportValve);
        }
    
        public void test_constructorInitializesCorrectDefaultValues() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/util/DocListTest.java

            assertEquals(Long.MAX_VALUE, docList.getContentSize());
    
            docList.addProcessingTime(1000);
            assertEquals(Long.MAX_VALUE, docList.getProcessingTime());
        }
    
        public void test_inheritance() {
            DocList docList = new DocList();
    
            assertTrue(docList instanceof java.util.ArrayList);
            assertTrue(docList instanceof java.util.List);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/exception/JobProcessingExceptionTest.java

            assertNotNull(exception);
            assertEquals(middleCause, exception.getCause());
            assertEquals(rootCause, exception.getCause().getCause());
        }
    
        public void test_inheritance() {
            // Test that JobProcessingException is a FessSystemException
            final JobProcessingException exception = new JobProcessingException("Test");
    
            assertTrue(exception instanceof FessSystemException);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7K bytes
    - Viewed (0)
Back to top