- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for deleteTestToken (0.54 sec)
-
src/test/java/org/codelibs/fess/it/ITBase.java
given().contentType("application/json").when().post(getEsUrl() + "/_refresh"); logger.info("Created Token: {}", DEFAULT_TEST_TOKEN); return DEFAULT_TEST_TOKEN; } public static void deleteTestToken() { final String testToken = System.getProperty(TEST_TOKEN); if (testToken != null) { return; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 3.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/CrudTestBase.java
refresh(); idList = getIdList(searchBody); count += 1; } } @AfterAll protected static void tearDownAll() { deleteTestToken(); } // ================ // Bodies // ================ protected void testCreate() { logger.info("[BEGIN] testCreate"); // Test: create setting api.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/search/SearchApiTests.java
} for (String fId : getFileConfigIds(NAME_PREFIX)) { deleteMethod("/api/admin/fileconfig/setting/" + fId); } deleteTestToken(); } @Test public void searchTestWith1Word() throws Exception { String query = "java"; Map<String, String> params = new HashMap<>(); params.put("q", query);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0)