Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for test_putAllEmptyMap (0.18 seconds)

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

            assertEquals("value2", dataStoreParams.get("key2"));
            assertEquals("value3", dataStoreParams.get("key3"));
        }
    
        // Test putAll with empty map
        @Test
        public void test_putAllEmptyMap() {
            dataStoreParams.put("existingKey", "existingValue");
    
            Map<String, String> emptyMap = new HashMap<>();
            dataStoreParams.putAll(emptyMap);
    
    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)
Back to Top