Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for test_initializeProbes (0.06 sec)

  1. src/test/java/org/codelibs/fess/exec/ThumbnailGeneratorTest.java

            String expected = "Options [sessionId=test-session, name=test-name, propertiesPath=/path/to/props, numOfThreads=5]";
            assertEquals(expected, options.toString());
        }
    
        public void test_initializeProbes() {
            // Test that initializeProbes doesn't throw exception
            try {
                ThumbnailGenerator.initializeProbes();
                // If no exception thrown, test passes
                assertTrue(true);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java

            String expected = "Options [sessionId=test-session, name=test-name, propertiesPath=/path/to/props]";
            assertEquals(expected, options.toString());
        }
    
        // Test initializeProbes
        public void test_initializeProbes() {
            try {
                SuggestCreator.initializeProbes();
                // If no exception thrown, test passes
                assertTrue(true);
            } catch (Exception e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

            assertTrue(result.contains("expires=7"));
            assertTrue(result.contains("hotThread=5000"));
        }
    
        // Test initializeProbes method
        public void test_initializeProbes() {
            // Simply test that the method doesn't throw exceptions
            try {
                Crawler.initializeProbes();
            } catch (Exception e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 30.5K bytes
    - Viewed (0)
Back to top