System.out.println(propertyName + ": " + unmatchedExamples + " / " + totalExamples + " were unmatched");
}
/// iterate over each of the different instances
for(ObjectDiffScore<A> objectDiff : typeDiff.getDiffObjects()) {
A differentA = objectDiff.getFrom();
System.out.println("A with id " + differentA.getIntValue() + " was different");
/// show the differences
displayObjectDifferences(objectDiff.getFrom(), objectDiff.getTo());
}