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