@Test
 public void remove_removesValue() throws Exception {
   final StringKeyObjectMap<Integer> map = new StringKeyObjectMap<Integer>();
   map.put("abc", Integer.valueOf(0));
   Assert.assertEquals(Integer.valueOf(0), map.get("abc"));
   map.remove("abc");
   Assert.assertNull(map.get("abc"));
 }