Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_constraintAnnotation (0.11 sec)

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

            assertNotNull("Documented annotation should be present", documented);
        }
    
        // Test Constraint annotation
        public void test_constraintAnnotation() {
            final Constraint constraint = CustomSize.class.getAnnotation(Constraint.class);
            assertNotNull("Constraint annotation should be present", constraint);
    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

            assertNotNull("Documented annotation should be present", documented);
        }
    
        // Test Constraint annotation
        public void test_constraintAnnotation() {
            final Constraint constraint = UriType.class.getAnnotation(Constraint.class);
            assertNotNull("Constraint annotation should be present", constraint);
    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