Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_suggest_ (0.98 sec)

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

        }
    
        // Test process with properties path
        public void test_process_withPropertiesPath() {
            try {
                // Create temporary properties file
                File tempPropFile = File.createTempFile("test_suggest_", ".properties");
                tempPropFile.deleteOnExit();
                FileUtil.writeBytes(tempPropFile.getAbsolutePath(), "test.property=value".getBytes());
    
    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/helper/SuggestHelperTest.java

            try {
                helper.init();
                assertNotNull(helper.suggester());
            } catch (Exception e) {
                assertTrue(true);
            }
        }
    
        public void test_suggester() {
            try {
                assertNull(suggestHelper.suggester());
            } catch (Exception e) {
                assertTrue(true);
            }
        }
    
        public void test_setSearchStoreInterval() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 16K bytes
    - Viewed (0)
Back to top