Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for stringValue (0.07 seconds)

  1. src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java

        }
    
        // Test getAsString with String value
        @Test
        public void test_getAsStringWithStringValue() {
            dataStoreParams.put("stringKey", "stringValue");
            assertEquals("stringValue", dataStoreParams.getAsString("stringKey"));
        }
    
        // Test getAsString with non-String value
        @Test
        public void test_getAsStringWithNonStringValue() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 10.9K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/indexer/DocBoostMatcherTest.java

        }
    
        @Test
        public void test_match_nonBooleanReturn() {
            final DocBoostMatcher docBoostMatcher = new DocBoostMatcher();
            docBoostMatcher.setMatchExpression("'string_value'");
    
            final Map<String, Object> map = new HashMap<String, Object>();
            map.put("data1", 1);
            assertFalse(docBoostMatcher.match(map));
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:03:38 GMT 2026
    - 8.8K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

            assertNotNull(result);
            assertEquals("value", result.get("key"));
        }
    
        @Test
        public void test_getMapValue_notMap() {
            final Map<String, Object> map = Map.of("key", "string_value");
            assertNull(coordinatorHelper.getMapValue(map, "key"));
        }
    
        @Test
        public void test_getMapValue_missing() {
            final Map<String, Object> map = Map.of("key", "value");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 58.6K bytes
    - Click Count (0)
Back to Top