理论与测试 Nunit
我刚刚阅读 Nunit 2.5 文档,发现了 Theory 属性,我在理解这与普通单元测试有何不同以及如何使用它方面遇到了一些困难。
它与普通测试有何不同?
你会在什么情况下使用这种测试?
我似乎无法理解它:(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我刚刚阅读 Nunit 2.5 文档,发现了 Theory 属性,我在理解这与普通单元测试有何不同以及如何使用它方面遇到了一些困难。
它与普通测试有何不同?
你会在什么情况下使用这种测试?
我似乎无法理解它:(
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
理论类似于参数化测试,具有定义假设的附加功能它必须通过,并在实际执行测试及其断言之前进行检查。
基本上,如果您有很多数据点并且想要检查应保证的某些行为,则可以使用它 - 但并非总是如此,仅在某些 前提条件。
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.
理论是参数化测试的优雅替代方案,请参阅我在 stackoverflow 的问题
a theory is an elegant alternative to parameterized test, see my question here at stackoverflow