assertThrows(()->{map.replace(FIRST_KEY,FIRST_VALUE,null);},NullPointerException.class,description+": should throw NPE");
assertThrows(()->{if(!map.replace(FIRST_KEY,null,EXTRA_VALUE))thrownewNullPointerException("default returns false rather than throwing");},NullPointerException.class,description+": should throw NPE");