{
final List<String> forWorking = new ArrayList<String>();
forWorking.add("one");
final List<String> forBase = new ArrayList<String>();
forBase.add("uno");
final ObjectWithMethodEqualsOnlyValueProviderMethodOnGetCollection working = new ObjectWithMethodEqualsOnlyValueProviderMethodOnGetCollection(forWorking);
final ObjectWithMethodEqualsOnlyValueProviderMethodOnGetCollection base = new ObjectWithMethodEqualsOnlyValueProviderMethodOnGetCollection(forBase);
final DiffNode node = objectDiffer.compare(working, base);
NodeAssertions.assertThat(node).self().hasState(DiffNode.State.UNTOUCHED);
NodeAssertions.assertThat(node).self().hasNoChildren();