Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_methodsExist (1.42 sec)

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

            assertTrue("Should implement ConstraintValidator",
                    jakarta.validation.ConstraintValidator.class.isAssignableFrom(CustomSizeValidator.class));
        }
    
        public void test_methodsExist() {
            // Verify required methods exist
            try {
                CustomSizeValidator.class.getMethod("initialize", CustomSize.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)
  2. src/test/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRootTest.java

            } catch (final NoSuchMethodException e) {
                fail("Constructor with Context parameter should exist");
            }
        }
    
        public void test_methodsExist() {
            // Verify that processWebInfLib method is overridden (it's protected so we can't call it directly)
            try {
    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