Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for updatedValue (0.05 sec)

  1. src/test/java/org/codelibs/fess/util/DocMapTest.java

            assertNull(docMap.put("newKey", "newValue"));
            assertEquals("newValue", docMap.get("newKey"));
    
            assertEquals("newValue", docMap.put("newKey", "updatedValue"));
            assertEquals("updatedValue", docMap.get("newKey"));
    
            assertNull(docMap.get("nonexistent"));
        }
    
        public void test_remove() {
            Map<String, Object> parentMap = new HashMap<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 10.5K bytes
    - Viewed (0)
Back to top