测试驱动 .NET 不会使用 NUnit 插件
我在通过 Visual Studio 2008 的测试驱动 .NET 插件运行 NUnit 时遇到问题。我有一个插件,当我使用 NUnit GUI 时,它工作得很好。然而,当通过 TDD.NET 运行 NUnit 时,该插件似乎不起作用。我尝试了一些方法,例如更新到最新版本,将插件放入 TDD.NET 的 NUnit 副本中,以及修改 TDD.NET nunit.config 文件以指向另一个副本 nunit。这些策略都不起作用。我缺少什么?提前致谢!
I am experiencing a problem with running NUnit via the Test Driven .NET plugin with Visual Studio 2008. I have an addin that when I use the NUnit GUI, works just fine. However, the addin doesn't seem to work when run NUnit through TDD.NET. I've tried a few things, such as updating to the lastest version, and placing the addin into TDD.NET's copy of NUnit, and modifying the TDD.NET nunit.config file to point at another copy nunit. None of these strategies work. What am I missing? Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查以下事项:
并查看是否有任何测试结果可见,还可以尝试阅读插件的文档
http://www.testdriven.net/快速启动.aspx
check following things :
And see if any test result is visible also try reading documentation of the plugin
http://www.testdriven.net/quickstart.aspx
尝试运行 nunit-console.exe 作为项目属性的构建后脚本。它在每次构建后自动执行。
try running nunit-console.exe as a post build script of your project property. It executes automatically after each build.