Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for test_getAsStringWithNullValue (0.41 sec)

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

            dataStoreParams.put("boolKey", true);
            assertEquals("true", dataStoreParams.getAsString("boolKey"));
        }
    
        // Test getAsString with null value
        public void test_getAsStringWithNullValue() {
            dataStoreParams.put("nullKey", null);
            assertNull(dataStoreParams.getAsString("nullKey"));
        }
    
        // Test getAsString for non-existent key
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.5K bytes
    - Viewed (0)
Back to top