public void TestPass_VerifyGetInventorsWithMultiplePariants() { List <Inventor> expected = PatentDataAnalyzer.GetInventorsWithMulitplePatents(3); List <Inventor> actual = new List <Inventor> { new Inventor() { Name = "Benjamin Franklin", City = "Philadelphia", State = "PA", Country = "USA", Id = 1 } }; //Console.WriteLine(list.ToArray()); InventorComparator t = new InventorComparator(); CollectionAssert.AreEqual(expected, actual, t); }
public void SetUp() { _TestComparator = new InventorComparator(); }