如何在 Visual Studio 中使用 nunit
Visual Studio 有一个内置的单元测试框架。我想知道是否可以使用 nunit 代替?
Visual studio has a built-in unit test framework. I am wondering if I can use nunit instead?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,TestDriven.Net,Nunit 和 Resharper 提供与VS。更多详细信息请参见下面的两篇文章(回答同一问题)。
单元测试、NUnit 还是 Visual studio?
和
单元测试、NUnit 还是 Visual studio?
Yes, TestDriven.Net, Nunit and Resharper provide integration with VS. More details in the two posts below (in response to the same question).
Unit test, NUnit or Visual studio?
and
Unit test, NUnit or Visual studio?
使用不带扩展的 NUnit
这个答案早就该回答了,但我在 Visual Studio 中使用 NUnit,没有任何额外的扩展(主要也不是免费的)。
整个想法是配置您的测试项目(实际上是一个常见的类库项目),以便当您点击 F5 或 Ctrl-F5 时,它会自动启动 NUnit GUI 并开始测试执行。
此项目配置的主要好处 (所有配置步骤都用图像描述),如果您需要,当您的测试中有错误时,也可以轻松调试您的测试。
Using NUnit without extensions
This answer is long overdue, but I'm using NUnit in Visual Studio without any additional extensions (that are mainly also not free).
The whole idea is to configure your test project (a usual Class library project actually) so that when you hit F5 or Ctrl-F5 it automatically starts NUnit GUI and starts test execution.
The main benefit of this project configuration (all configuration steps are described with images) is that it's easy to also debug your tests if you need to when you have bugs in them.
这是 NUnit 的免费 Visual Studio 插件: NUnitAddin
Here's a free Visual Studio addin for NUnit: NUnitAddin