Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getProductVersion (0.55 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/opensearch/config/exentity/WebConfigTest.java

                }
            };
            ComponentUtil.setFessConfig(fessConfig);
            SystemHelper systemHelper = new SystemHelper() {
                @Override
                public String getProductVersion() {
                    return "98.76";
                }
            };
            ComponentUtil.register(systemHelper, "systemHelper");
            WebAuthenticationService webAuthenticationService = new WebAuthenticationService() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 7.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/app/web/api/ApiResultTest.java

        public void test_ApiStartJobResponse_hasVersionField() {
            final ApiStartJobResponse response = new ApiStartJobResponse();
            response.status(Status.OK);
            // version is initialized from SystemHelper.getProductVersion()
            // In test environment it may be null, but the field should exist
            assertEquals(0, response.status);
        }
    
        // ===================================================================================
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 4.5K bytes
    - Click Count (0)
Back to Top