Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for testInheritance (0.09 sec)

  1. src/test/java/jcifs/https/HandlerTest.java

                Handler testHandler = new Handler(null);
    
                // Then
                assertNotNull(testHandler);
            }
    
            @Test
            @DisplayName("Should extend jcifs.http.Handler")
            void testInheritance() {
                // Then
                assertTrue(handler instanceof jcifs.http.Handler);
                assertTrue(handler instanceof URLStreamHandler);
            }
        }
    
        @Nested
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb1/https/HandlerTest.java

                Handler testHandler = new Handler();
    
                // Then
                assertNotNull(testHandler);
            }
    
            @Test
            @DisplayName("Should extend jcifs.smb1.http.Handler")
            void testInheritance() {
                // Then
                assertTrue(handler instanceof jcifs.smb1.http.Handler);
                assertTrue(handler instanceof URLStreamHandler);
            }
        }
    
        @Nested
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/dcerpc/msrpc/MsrpcSamrConnect2Test.java

        }
    
        @Nested
        @DisplayName("Inheritance verification")
        class InheritanceVerification {
    
            @Test
            @DisplayName("should properly extend base classes")
            void testInheritance() {
                // Arrange
                SamrPolicyHandle ph = createMockPolicyHandle();
    
                // Act
                MsrpcSamrConnect2 msg = new MsrpcSamrConnect2("\\\\server", 0x000F0000, ph);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  4. src/test/java/jcifs/util/transport/TransportExceptionTest.java

            assertEquals(nestedCauseException.getCause(), nestedCauseException.getRootCause());
        }
    
        @Test
        @DisplayName("Test exception inheritance and polymorphism")
        public void testInheritance() {
            // Create exception
            TransportException exception = new TransportException("Test exception");
    
            // Test inheritance chain
            assertTrue(exception instanceof TransportException);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  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/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)
  10. src/test/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRootTest.java

            // Basic test to verify the class exists and has the correct structure
            assertNotNull("FessWebResourceRoot class should exist", FessWebResourceRoot.class);
        }
    
        public void test_inheritance() {
            // Verify that FessWebResourceRoot extends StandardRoot
            assertTrue("FessWebResourceRoot should extend StandardRoot", StandardRoot.class.isAssignableFrom(FessWebResourceRoot.class));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.3K bytes
    - Viewed (0)
Back to top