如何将 NUnit 与 VS 2008 集成
您好,我使用 NUnit 创建了一个单元测试用例。当我运行测试 NUnit 时,它工作正常。但我需要使用 Visual Studio 运行它。所以我参考了 NUnit 网站并按照以下步骤操作 1)右键单击测试项目并单击属性|选择调试选项 2)勾选外部程序选项并选择nUnit exe文件。 3)我运行测试,
得到的错误: 无法启动,因为测试项目不包含任何测试方法。但我包含了 4 个在 NUnit GUI 中工作的测试方法。
提前致谢
Hi i created a unit test case using NUnit.When i run the test NUnit it works fine.But i need to run it by using Visual studio.So i referred the NUnit website and followed the below steps
1)Right clicked the test project and clicked properties |Chose Debug option
2)checked the external program option and choosed the nUnit exe file.
3)And i run the test
Error i got:
Cannot start because the test project does not contain any test method.But i included 4 test methods which works in NUnit GUI.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看 TestDriven.NET,这是一个免费的 Visual Studio 插件,允许您使用 NUnit 运行单元测试直接从 IDE。
Check out TestDriven.NET, a free Visual Studio add-in that allows you to run your unit tests with NUnit directly from the IDE.
此外,ReSharper 还完美支持使用 NUnit 进行测试!
http://www.jetbrains.com/resharper/features/unit_testing.html
Also ReSharper beautifully supports testing with NUnit!
http://www.jetbrains.com/resharper/features/unit_testing.html
在“调试选项”选项卡上,确保还使用测试程序集的名称设置命令行参数。
On the Debug options tab, make sure to also set a command line argument with the name of your test assembly.