- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for test_post (0.05 sec)
-
src/test/java/org/codelibs/fess/helper/CurlHelperTest.java
} public void test_post() { setupMockConfig("localhost:9200", "", ""); curlHelper.init(); CurlRequest request = curlHelper.post("/test"); assertNotNull(request); // The request should be properly created } public void test_put() { setupMockConfig("localhost:9200", "", ""); curlHelper.init();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 10.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/DuplicateHostHelperTest.java
DuplicateHostHelper helper = new DuplicateHostHelper(); List<DuplicateHost> testList = new ArrayList<>(); DuplicateHost testHost = new DuplicateHost(); testHost.setRegularName("www.test.com"); testHost.setDuplicateHostName("test.com"); testList.add(testHost); helper.setDuplicateHostList(testList); assertEquals(testList, helper.duplicateHostList);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 6.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/DocumentUtilTest.java
assertEquals(Arrays.asList("aaa", "bbb"), (List<String>) DocumentUtil.getValue(doc, "key1", List.class)); } public void test_list() { Map<String, Object> doc = new HashMap<>(); doc.put("key1", Arrays.asList("aaa", "bbb")); assertArrayEquals(new String[] { "aaa", "bbb" }, DocumentUtil.getValue(doc, "key1", String[].class));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java
// Set newInputs to non-empty array - not deleted item.setNewInputs(new String[] { "something" }); assertFalse(item.isDeleted()); } public void test_sort() { String[] inputs = { "z", "a", "m" }; String[] newInputs = { "9", "1", "5" }; CharMappingItem item = new CharMappingItem(1L, inputs, "output"); item.setNewInputs(newInputs);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.2K bytes - Viewed (0)