Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for TestKey (0.04 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java

                System.clearProperty(Constants.FESS_CONFIG_PREFIX + testKey);
            }
        }
    
        // Test caching mechanism
        public void test_get_caching() {
            // Get property twice to test caching behavior
            String testKey = "domain.title";
            String value1 = fessConfig.get(testKey);
            String value2 = fessConfig.get(testKey);
    
            // Values should be the same
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java

        public void test_append_nullValue() {
            StringBuilder buf = new StringBuilder();
            Supplier<Object> supplier = () -> null;
    
            monitorTarget.append(buf, "testKey", supplier);
            assertEquals("\"testKey\":null", buf.toString());
        }
    
        // Test append method with Integer value
        public void test_append_integerValue() {
            StringBuilder buf = new StringBuilder();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/util/WebApiUtilTest.java

        public void test_setObject_noRequest() {
            // Test setObject when no HTTP request is available
            // This should not throw exception, just do nothing
            try {
                WebApiUtil.setObject("testKey", "testValue");
            } catch (Exception e) {
                fail("setObject should handle missing request gracefully: " + e.getMessage());
            }
        }
    
        public void test_setObject_withNullName() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/SearchLogHelperTest.java

                // Expected in test environment
                assertTrue(true);
            }
        }
    
        public void test_toLowerHyphen() {
            Map<String, Object> source = new HashMap<>();
            source.put("TestKey", "value1");
            source.put("AnotherTestKey", "value2");
    
            Map<String, Object> nested = new HashMap<>();
            nested.put("NestedKey", "nestedValue");
            source.put("NestedMap", nested);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 6K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

            }
        }
    
        // Test sendMail method
        public void test_sendMail_withNotificationDisabled() {
            Map<String, String> infoMap = new HashMap<>();
            infoMap.put("TestKey", "TestValue");
    
            // Should not throw exception when notification is disabled
            try {
                crawler.sendMail(infoMap);
            } 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