Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_retentionPolicy (0.74 sec)

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

        public void test_annotationPresence() {
            assertTrue("CustomSize should be an annotation", CustomSize.class.isAnnotation());
        }
    
        // Test annotation retention policy
        public void test_retentionPolicy() {
            final Retention retention = CustomSize.class.getAnnotation(Retention.class);
            assertNotNull("Retention annotation should be present", retention);
    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

        public void test_annotationPresence() {
            assertTrue("UriType should be an annotation", UriType.class.isAnnotation());
        }
    
        // Test annotation retention policy
        public void test_retentionPolicy() {
            final Retention retention = UriType.class.getAnnotation(Retention.class);
            assertNotNull("Retention annotation should be present", retention);
    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