c# – 如何在单元测试中断言字典

前端之家收集整理的这篇文章主要介绍了c# – 如何在单元测试中断言字典前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
你知道我怎么能断言两种类型的词典
Dictionary<string,List<string>>

在我的单元测试项目中?

我尝试使用CollectionsAssert,但它并没有为我工作.我猜这需要简单的Dictionaries作为参数(例如Dictionary< string,string>).我想我的问题来自于字典的第二个参数.你呢知道我怎么能断言这两个字典?

解决方法

一种可以为您提供良好错误消息的方法
public string ToAssertableString(IDictionary<string,List<string>> dictionary) {
    var pairStrings = dictionary.OrderBy(p => p.Key)
                                .Select(p => p.Key + ": " + string.Join(",",p.Value));
    return string.Join("; ",pairStrings);
}

// ...
Assert.AreEqual(ToAssertableString(dictionary1),ToAssertableString(dictionary2));
原文链接:https://www.f2er.com/csharp/97888.html

猜你在找的C#相关文章