using System.Collections.Generic;
using KellermanSoftware.CompareNetObjects;
public static Guid guid1 = Guid.NewGuid();
public static Guid guid2 = Guid.NewGuid();
public static ComplexTypeObj cto1 = new ComplexTypeObj
Searches = new List<ComplexObject> { new ComplexObject { SomeQuery = "abcdefg", SomeProperty = "SomeValue" },
new ComplexObject { SomeQuery = "abcd", SomeProperty = "SomeValueNewValue" },
new ComplexObject { SomeQuery = "ag", SomeProperty = "SomeOtherValue"}
Ids = new List<Guid> {guid1, guid2},
Surnames = new List<string> {"Doe", "Rae", "Me"}
public static ComplexTypeObj cto2 = new ComplexTypeObj
Searches = new List<ComplexObject> { new ComplexObject { SomeQuery = "abcdefg", SomeProperty = "SomeValue" },
new ComplexObject { SomeQuery = "abcd", SomeProperty = "SomeValueNewValue" },
new ComplexObject { SomeQuery = "ag", SomeProperty = "SomeOtherValue"}
Ids = new List<Guid> { guid1, guid2 },
Surnames = new List<string> { "Doe", "Rae", "Me" }
public static ComplexTypeObj cto3 = new ComplexTypeObj
Searches = new List<ComplexObject> { new ComplexObject { SomeQuery = "abcdefg", SomeProperty = "SomeValue" },
new ComplexObject { SomeQuery = "abcdefg", SomeProperty = "SomeValue" },
new ComplexObject { SomeQuery = "abcdefg", SomeProperty = "SomeOtherValue"}
Ids = new List<Guid> { guid1, guid2 },
Surnames = new List<string> { "Doe", "Rae", "Me" }
public static ComplexTypeObj cto4 = new ComplexTypeObj
Searches = new List<ComplexObject> { new ComplexObject { SomeQuery = "abcdefg", SomeProperty = "SomeValue" },
new ComplexObject { SomeQuery = "abcdefg", SomeProperty = "SomeOtherValue"},
new ComplexObject { SomeQuery = "abcdefg", SomeProperty = "SomeValue" }
Ids = new List<Guid> { guid1, guid2 },
Surnames = new List<string> { "Me", "Rae", "Doe" }
public static void Main()
Console.WriteLine("Test 1\n");
var compareLogic = new CompareLogic();
compareLogic.Config.MaxDifferences = 100;
compareLogic.Config.TreatStringEmptyAndNullTheSame = true;
compareLogic.Config.CaseSensitive = true;
var compareResults = compareLogic.Compare(cto3, cto1);
if(!compareResults.AreEqual)
compareResults.DifferencesString.Dump();
Console.WriteLine("\nTest 2: Collection Ordering -> Not Ignored\n");
compareLogic.Config.IgnoreCollectionOrder = false;
compareResults = compareLogic.Compare(cto3, cto4);
if(!compareResults.AreEqual)
compareResults.DifferencesString.Dump();
Console.WriteLine("equal!!");
Console.WriteLine("\nTest 3: Collection Ordering -> Ignored\n");
compareLogic.Config.IgnoreCollectionOrder = true;
compareResults = compareLogic.Compare(cto3, cto4);
if(!compareResults.AreEqual)
compareResults.DifferencesString.Dump();
Console.WriteLine("equal!!");
public class ComplexTypeObj
public List<ComplexObject> Searches = new List<ComplexObject>();
public List<Guid> Ids = new List<Guid>();
public List<string> Surnames = new List<string>();
public class ComplexObject
public string SomeQuery { get; set; }
public string SomeProperty { get; set; }