Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for checkDeleteMethod (0.17 sec)

  1. src/test/java/org/codelibs/fess/it/admin/PluginTests.java

            return INSTALL_ENDPOINT_SUFFIX;
        }
    
        protected String getDeleteEndpointSuffix() {
            return DELETE_ENDPOINT_SUFFIX;
        }
    
        protected Response checkDeleteMethod(final Map<String, Object> body) {
            return checkMethodBase(body).delete(getApiPath() + "/");
        }
    
        @Test
        void testInstalled_ok() {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/it/CrudTestBase.java

            int count = 0;
            List<String> idList = getIdList(searchBody);
            while (idList.size() > 0 && count < NUM) {
                final String id = idList.get(0);
                checkDeleteMethod(getItemEndpointSuffix() + "/" + id.toString());
                refresh();
                idList = getIdList(searchBody);
                count += 1;
            }
        }
    
        @AfterAll
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.8K bytes
    - Viewed (0)
Back to top