final Map<String, String> modified = new LinkedHashMap<String, String>(1);
modified.put("foo", "bar");
final Map<String, String> base = new LinkedHashMap<String, String>(modified);
modified.put("ping", "pong");
final DiffNode node = ObjectDifferBuilder.buildDefault().compare(modified, base);
NodeAssertions.assertThat(node).root().hasChildren(1);
NodeAssertions.assertThat(node)
.child(NodePath.startBuilding().mapKey("foo"))
.doesNotExist();