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