Lets say I have 2 dictionary objects: Dictionary<string, object> dictA
, Dictionary<string, object> dictB
. I'm doing the following when comparing them:
dictB.ShouldBeEquivalentTo<T>(dictA);
When the total items do not match, I just get a message
Expected member dictB to be a dictionary with 26 item(s), but found 23 item(s).
How can I make it show what items are missing between the two?