I have the following unit test:
string MtrlCode = \"0\"; Assessment target = new Assessment(MtrlCode); List EdgeCaseSymbolCodes = new List<
The Assert fails because it verifies whether the two lists are in fact the same instance. They are not; it's two different list instances. You will need to write code to verify that the two lists contains the same set of items.
Assert