* lowerEntry, higherEntry, ceilingEntry, and floorEntry return
* immutable entries
*/
public void testEntryImmutability() {
ConcurrentNavigableMap map = map5();
Map.Entry e = map.lowerEntry(three);
assertEquals(two, e.getKey());
try {
e.setValue("X");
shouldThrow();
} catch (UnsupportedOperationException success) {}