* remove(null, x) throws NPE
*/
@Test
public void testRemove2_NullPointerException() throws IOException {
try {
SharedHashMap c = newShmStringString(5);
c.put("sadsdf", "asdads");
c.remove(null, "whatever");
shouldThrow();
} catch (NullPointerException success) {
}
}