List<string> expected = new List<string>(); expected.Add("hello"); List<string> result = new List<string>(); result.Add("hello"); Assert.AreEqual(expected, result);
Select allOpen in new window