理论与测试 Nunit

发布于 2024-07-23 06:57:07 字数 232 浏览 3 评论 0 原文

我刚刚阅读 Nunit 2.5 文档,发现了 Theory 属性,我在理解这与普通单元测试有何不同以及如何使用它方面遇到了一些困难。

它与普通测试有何不同?

你会在什么情况下使用这种测试?

我似乎无法理解它:(

I was just reading through the Nunit 2.5 docs and came across the Theory attribute, and I'm having a little bit trouble understanding how this is different to a normal unit test and how it could be used.

What makes it different from a normal test?

What situations would you use this kind of test?

I just can't seem to get my head around it :(

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

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

发布评论

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

评论(2

燕归巢 2024-07-30 06:57:07

理论类似于参数化测试,具有定义假设的附加功能它必须通过,并在实际执行测试及其断言之前进行检查。

基本上,如果您有很多数据点并且想要检查应保证的某些行为,则可以使用它 - 但并非总是如此,仅在某些 前提条件

A Theory is similar to a parameterized test, with the additional ability to define assumptions under which it must pass, which are checked before actually performing the test and its assertions.

Basically, it could be used if you have a lot of data points and want to check a certain behaviour that should be guaranteed - but not always, only under certain preconditions.

听不够的曲调 2024-07-30 06:57:07

理论是参数化测试的优雅替代方案,请参阅我在 stackoverflow 的问题

a theory is an elegant alternative to parameterized test, see my question here at stackoverflow

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