Assert.AreEqual failing in unit test

后端 未结 10 1349
挽巷
挽巷 2021-01-18 14:54

I have the following unit test:

string MtrlCode = \"0\";
Assessment target = new Assessment(MtrlCode);

List EdgeCaseSymbolCodes = new List<         


        
10条回答
  •  深忆病人
    2021-01-18 15:35

    I am also faced(ing) the same problem. As a work around you can check the count of the list, and do a for each and check for contains.

提交回复
热议问题