Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestGroup (0.25 sec)

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

        @UriType(protocolType = ProtocolType.WEB, groups = { TestGroup.class })
        private String testFieldWithGroups;
    
        // Test field with payload
        @UriType(protocolType = ProtocolType.WEB, payload = { TestPayload.class })
        private String testFieldWithPayload;
    
        // Test field with multiple groups
        @UriType(protocolType = ProtocolType.FILE, groups = { TestGroup.class, AnotherTestGroup.class })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 21K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/validation/CustomSizeTest.java

                    return "multi.max";
                }
            };
    
            assertEquals("Should have 2 groups", 2, multiAnnotation.groups().length);
            assertEquals("First group should be TestGroup", TestGroup.class, multiAnnotation.groups()[0]);
            assertEquals("Second group should be AnotherTestGroup", AnotherTestGroup.class, multiAnnotation.groups()[1]);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.2K bytes
    - Viewed (0)
Back to top