Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_annotationMethods (0.08 sec)

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

            assertEquals("Annotation type should be CustomSize", CustomSize.class, annotation.annotationType());
        }
    
        // Test all annotation methods exist
        public void test_annotationMethods() {
            try {
                final Method messageMethod = CustomSize.class.getMethod("message");
                assertNotNull("message() method should exist", messageMethod);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/validation/UriTypeTest.java

            assertEquals("Annotation type should be UriType", UriType.class, annotation.annotationType());
        }
    
        // Test all annotation methods exist
        public void test_annotationMethods() {
            try {
                final Method protocolTypeMethod = UriType.class.getMethod("protocolType");
                assertNotNull("protocolType() method should exist", protocolTypeMethod);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 21K bytes
    - Viewed (0)
Back to top