- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for TestPayload (0.06 sec)
-
src/test/java/org/codelibs/fess/validation/UriTypeTest.java
private String testFieldWithPayload; // Test field with multiple groups @UriType(protocolType = ProtocolType.FILE, groups = { TestGroup.class, AnotherTestGroup.class }) private String testFieldWithMultipleGroups; // Test field with multiple payloads @UriType(protocolType = ProtocolType.FILE, payload = { TestPayload.class, AnotherTestPayload.class })
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 21K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CustomSizeTest.java
assertEquals("Should have 2 payloads", 2, multiAnnotation.payload().length); assertEquals("First payload should be TestPayload", TestPayload.class, multiAnnotation.payload()[0]); assertEquals("Second payload should be AnotherTestPayload", AnotherTestPayload.class, multiAnnotation.payload()[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)