I have the following unit test:
string MtrlCode = \"0\";
Assessment target = new Assessment(MtrlCode);
List EdgeCaseSymbolCodes = new List<
I don't think Assert.AreEqual
supports collections.
You will have to write your own method that checks the number of elements in the collections and compares them individually.
You will have to supply your own logic for how you define the equality of collections, ie. if both collections contain the same elements but in different order, are they still equal?