using System.Collections.Generic;
using KellermanSoftware.CompareNetObjects;
var expected = new Dictionary<string, string>()
var actual1 = new Dictionary<string, string>()
var actual2 = new Dictionary<string, string>()
var actual3 = new Dictionary<string, string>()
void Compare(Dictionary<string, string> actual)
var result = new CompareLogic().Compare(expected, actual);
Assert.IsTrue(result.AreEqual, result.DifferencesString);