Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 12 of 12 for test_init (0.09 seconds)

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

  1. src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java

        }
    
        @Override
        protected void tearDown(TestInfo testInfo) throws Exception {
            ComponentUtil.setFessConfig(null);
            super.tearDown(testInfo);
        }
    
        @Test
        public void test_init() {
            // Test initialization with null fields
            queryFieldConfig.init();
    
            // Verify response fields are initialized
            assertNotNull(queryFieldConfig.getResponseFields());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 33.6K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

                indexUpdater.interrupt();
                indexUpdater.join(1000);
            }
            super.tearDown(testInfo);
        }
    
        // Test initialization
        @Test
        public void test_init() {
            indexUpdater.init();
            assertNotNull(indexUpdater);
        }
    
        // Test initialization with IngestFactory
        @Test
        public void test_init_withIngestFactory() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 33.6K bytes
    - Click Count (0)
Back to Top