MSTest Assert.AreEqual 问题

发布于 2024-12-11 06:26:08 字数 326 浏览 0 评论 0原文

因此,我生成一个空的 Dictionary 来与我的测试结果进行比较,然后我这样做:

Assert.AreEqual(retval, temp);

即使它们包含相同的确切数据,它也会失败。我也尝试过像这样使用 IsTrueAssert.IsTrue(retval.Equals(temp)); 即使它们是相同的,也会失败。

我怎样才能只比较元素,而不是我假设它正在执行的相同内存位置?

谢谢。

So I generate an empty Dictionary<string,string> to compare to my test result, and then I do this:

Assert.AreEqual(retval, temp);

And it fails even though they contain the same exact data. I've also tried using IsTrue like this: Assert.IsTrue(retval.Equals(temp)); and that fails too even if they are the same.

How can I compare just the elements, not the same memory location which I'm assuming it's doing?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

╰沐子 2024-12-18 06:26:08

您可以执行 Assert.IsTrue(retval.SequenceEqual(temp)) ,尽管这也要求字典中元素的顺序相同。我不确定您是否希望平等测试那么严格。

请参阅此问题及其答案,了解比较字典内容(无论顺序如何)的方法。

You could do Assert.IsTrue(retval.SequenceEqual(temp)), although this will also require the order of elements in the dictionaries to be the same. I'm not sure if you want your test for equality to be that strict.

See this question and its answers for ways to compare the contents of the dictionaries regardless of sequence.

彼岸花ソ最美的依靠 2024-12-18 06:26:08

您是否看过

.NET 字典具有相同的键和值,但不“等于”

看起来是一个非常完整的答案。

Have you looked at

.NET Dictionaries have same keys and values, but aren't "equal"

Looks like a pretty complete answer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文