I'm trying to compare two lists using CollectionAssert
but it failed in comparing exact match and also it is not telling which value is incorrect
List<string> ExpectedList = new List<string>() { "apple","orange","grapes","mango"};
List<string> ActualList = new List<string>() { "gova","orange","GRAP"};
CollectionAssert.AreEqual(ExpectedList, ActualList)
Expected results should be in String:
"apple gova, grape GRAP, empty Mango"
How can I do it more efficiently or simply? Is there any other Assertion available in C#?