}
@Ignore("failing for some reason. was commented out")
@Test
public void testMapWithNullEntries_WithoutHints() {
MapToMap source = newInstance(MapToMap.class);
HashMap<String, Object> map = newInstance(HashMap.class);
map.put("A", Boolean.TRUE);
map.put("B", null);
source.setStandardMap(map);
MapToMapPrime destination = newInstance(MapToMapPrime.class);
HashMap<String, Object> hashMap = newInstance(HashMap.class);
hashMap.put("C", Boolean.TRUE);
destination.setStandardMap(hashMap);