NUnit Assert.Equals 与 Assert.AreEqual

发布于 2024-11-18 16:17:19 字数 188 浏览 1 评论 0原文

有什么区别:

  • Assert.EqualsAssert.AreEqual
  • Assert.NotNullAssert.IsNotNull
  • .. ?

What is the difference between:

  • Assert.Equals and Assert.AreEqual
  • Assert.NotNull and Assert.IsNotNull
  • ...

?

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

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

发布评论

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

评论(2

我喜欢麦丽素 2024-11-25 16:17:19

Assert.Equals 是一个对象比较

Assert.AreEquals 被重载以比较 (int,double, object) 等

Assert.NotNull 和 Assert.IsNotNul 看起来是相同的。

http://www.nunit.org/index.php?p =conditionAsserts&r=2.5.5

Assert.Equals is an object comparison

Assert.AreEquals is overloaded to compare (int,double, object) etc

Assert.NotNull and Assert.IsNotNul appear to be identical.

http://www.nunit.org/index.php?p=conditionAsserts&r=2.5.5

不寐倦长更 2024-11-25 16:17:19

只需阅读文档:

NUnit - ConditionAsserts

为 True 提供了两种形式,
False、Null 和 NotNull 条件。
“Is”形式兼容
NUnit 的早期版本
框架,而那些没有“是”的
提供兼容性
NUnitLite。

Just read the documentation:

NUnit - ConditionAsserts

Two forms are provided for the True,
False, Null and NotNull conditions.
The "Is" forms are compatible with
earlier versions of the NUnit
framework, while those without "Is"
are provided for compatibility with
NUnitLite.

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