Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for test_process_withPropertiesPath (0.39 sec)

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

                System.setErr(originalErr);
            } catch (Exception e) {
                System.setErr(originalErr);
            }
        }
    
        public void test_process_withPropertiesPath() throws Exception {
            // Test process method with properties path
            File tempPropFile = File.createTempFile("test_thumbnail_", ".properties");
            tempPropFile.deleteOnExit();
    
    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

            } catch (Exception e) {
                fail("initializeProbes should not throw exception: " + e.getMessage());
            }
        }
    
        // Test process with properties path
        public void test_process_withPropertiesPath() {
            try {
                // Create temporary properties file
                File tempPropFile = File.createTempFile("test_suggest_", ".properties");
                tempPropFile.deleteOnExit();
    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

            }
    
            // Check that sessionId was sanitized (hyphens replaced with underscores)
            assertEquals("test_session_123", options.sessionId);
        }
    
        public void test_process_withPropertiesPath() throws Exception {
            // Test that properties path is properly handled
            // Create temporary properties file
            File propFile = File.createTempFile("test", ".properties");
    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