Do you know how I can Assert two dictionaries of type
Dictionary<string,List<string>>
in my Unit test project?
I tried with CollectionsAssert but it didn' work for me.I guess that it takes to simple Dictionaries as parameters(e.g. Dictionary<string,string>
).I guess that the problem for me comes from the second parameter of the dictionary.Do you know how I can assert those two dictionaries?