}
@Test
public void testMap() {
Map<IMouseEventMatcher, String> map = new HashMap<IMouseEventMatcher, String>();
map.put(new BodyCellEditorMouseEventMatcher(TextCellEditor.class),
"ABC");
Assert.assertEquals(1, map.size());
map.remove(new BodyCellEditorMouseEventMatcher(TextCellEditor.class));
Assert.assertEquals(0, map.size());
}