Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_annotationPresence (0.09 sec)

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

        }
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
        }
    
        // Test annotation presence and structure
        public void test_annotationPresence() {
            assertTrue("CustomSize should be an annotation", CustomSize.class.isAnnotation());
        }
    
        // Test annotation retention policy
        public void test_retentionPolicy() {
    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

        }
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
        }
    
        // Test annotation presence and structure
        public void test_annotationPresence() {
            assertTrue("UriType should be an annotation", UriType.class.isAnnotation());
        }
    
        // Test annotation retention policy
        public void test_retentionPolicy() {
    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