* replace value fails when the given key not mapped to expected value
*/
public void testReplaceValue() {
SnapTreeMap map = map5();
assertEquals("A", map.get(one));
assertFalse(map.replace(one, "Z", "Z"));
assertEquals("A", map.get(one));
}
/**
* replace value succeeds when the given key mapped to expected value