Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for test_repeatedInstantiation (0.26 sec)

  1. src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java

            thread.start();
            thread.join();
    
            assertNull(exceptionHolder[0]);
            assertNotNull(clientHolder[0]);
        }
    
        // Test repeated instantiation
        public void test_repeatedInstantiation() {
            // Test that repeated instantiation works correctly
            for (int i = 0; i < 10; i++) {
                CrawlerEngineClient client = new CrawlerEngineClient();
                assertNotNull(client);
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.7K bytes
    - Viewed (0)
Back to top