Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for inherited (0.37 sec)

  1. src/test/java/org/codelibs/fess/annotation/SecuredTest.java

            assertNotNull(retention);
            assertEquals(RetentionPolicy.RUNTIME, retention.value());
    
            // Check Inherited annotation
            assertNotNull(Secured.class.getAnnotation(Inherited.class));
    
            // Check Documented annotation
            assertNotNull(Secured.class.getAnnotation(Documented.class));
        }
    
        // Test annotation value method
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java

            assertNotNull(crawlerEngineClient);
            // The actual client initialization happens lazily when needed
        }
    
        // Test that close method exists (inherited)
        public void test_closeMethodExists() {
            // Test that close method is available (inherited from parent)
            try {
                // Just verify the method exists, don't actually call it
                crawlerEngineClient.getClass().getMethod("close");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java

                    appendExceptionMethod = method;
                    break;
                }
            }
    
            assertNotNull("Should inherit append method", appendMethod);
            assertNotNull("Should inherit appendTimestamp method", appendTimestampMethod);
            assertNotNull("Should inherit appendException method", appendExceptionMethod);
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java

            assertSame(firstCall, secondCall);
            assertEquals(type, firstCall);
        }
    
        public void test_inheritanceFromFessSystemException() {
            // Test that InvalidAccessTokenException is properly inherited from FessSystemException
            String type = "SessionToken";
            String message = "Session expired";
            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)
  5. src/test/java/org/codelibs/fess/exception/LdapConfigurationExceptionTest.java

            String message = "Serialization test";
            LdapConfigurationException exception = new LdapConfigurationException(message);
    
            // Test that serialVersionUID is accessible (inherited from parent)
            assertNotNull(exception);
    
            // Create a new instance to verify it can be created multiple times
            LdapConfigurationException exception2 = new LdapConfigurationException(message);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/NavigableMapTestSuiteBuilder.java

          derivedSuites.add(createDescendingSuite(parentBuilder));
        }
    
        if (!parentBuilder.getFeatures().contains(NoRecurse.SUBMAP)) {
          // Other combinations are inherited from SortedMapTestSuiteBuilder.
          derivedSuites.add(createSubmapSuite(parentBuilder, Bound.NO_BOUND, Bound.INCLUSIVE));
          derivedSuites.add(createSubmapSuite(parentBuilder, Bound.EXCLUSIVE, Bound.NO_BOUND));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 7K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/exception/LdapOperationExceptionTest.java

            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
        }
    
        public void test_inheritanceFromFessSystemException() {
            // Test that LdapOperationException is properly inherited from FessSystemException
            LdapOperationException exception = new LdapOperationException("Test");
    
            assertTrue(exception instanceof FessSystemException);
            assertTrue(exception instanceof RuntimeException);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java

            assertEquals(message, exception.getMessage());
            assertTrue(exception.getMessage().length() > 5000);
        }
    
        public void test_getLocalizedMessage() {
            // Test getLocalizedMessage method (inherited from Throwable)
            String message = "Localized error message";
            DataStoreException exception = new DataStoreException(message);
    
            // By default, getLocalizedMessage returns the same as getMessage
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/exception/QueryParseExceptionTest.java

            assertTrue(queryParseException instanceof FessSystemException);
            assertTrue(queryParseException instanceof RuntimeException);
        }
    
        public void test_getMessage() {
            // Test that message is inherited from the cause
            String errorMessage = "Invalid query syntax";
            ParseException parseException = new ParseException(errorMessage);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

            assertEquals(InstanceDefFactory.SESSION, customPagerCreator.getInstanceDef());
            assertEquals(AutoBindingDefFactory.NONE, customPagerCreator.getAutoBindingDef());
        }
    
        // Test inherited behavior from ComponentCreatorImpl
        public void test_getNamingConvention() {
            assertSame(namingConvention, pagerCreator.getNamingConvention());
        }
    
        // Test component name creation
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.6K bytes
    - Viewed (0)
Back to top