- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for test_fields (0.07 sec)
-
src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java
assertEquals("query1 query2", getQuery("", new String[] { "query1", "query2" }, Collections.emptyMap(), Collections.emptyMap(), false)); } public void test_fields() { final Map<String, String[]> fields = Collections.singletonMap("title", new String[] { "test" }); assertEquals("title:\"test\"", getQuery("", new String[0], fields, Collections.emptyMap(), false));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 16.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CustomSizeTest.java
import jakarta.validation.Payload; public class CustomSizeTest extends UnitFessTestCase { // Test field with CustomSize annotation for testing @CustomSize(minKey = "test.min", maxKey = "test.max") private String testField; // Test field with only minKey @CustomSize(minKey = "test.min.only") private String testFieldMinOnly; // Test field with only maxKey @CustomSize(maxKey = "test.max.only")
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.2K bytes - Viewed (0)