我们将使用理论属性做什么?
我在 NUnit 中发现了 [Theory]
和 [Datapoint]
属性。我不太确定应该如何使用这些。我认为它们可以用于数据驱动的测试,这引起了我的兴趣。没有太多可用的资源。有人可以向我解释如何使用它们或向我指出资源吗?谢谢。
I discovered [Theory]
and [Datapoint]
attributes in NUnit. I am not very sure about how should I use these. I think they can be used for data-driven testing and this has got me interested. There aren't many resources available on the same. Can someone explain to me how to use them or point me to resources? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您看过在线 NUnit 文档吗?这里有一个示例向您展示如何使用 [Theory] 和 [Datapoint] 属性:
http://www.nunit.org/index.php?p=theory&r=2.5.3
Have you looked at the online NUnit docs? There's an example here that shows you how you can use the [Theory] and [Datapoint] attributes:
http://www.nunit.org/index.php?p=theory&r=2.5.3
摘自
Taken from