在 Visual Studio 中运行所有开放测试
有没有一种简单的方法可以在 Visual Studio 中的开放测试类中运行所有测试。我发现这是我最常需要做的事情。
我大多数情况下使用 Resharpers 或 TestDriven.NET 测试运行程序,但我无法在这两个测试运行程序中找到任何简单的方法来做到这一点。在 Resharper 中,如果有一个“将所有开放测试添加到会话”功能就好了,但经过多次谷歌搜索后,我找不到一个功能,也找不到任何其他简单的方法来做到这一点。
有没有工具、插件或者什么不能做到这一点?
Is there an easy way to run all tests in open test classes in Visual Studio. I find that this is what I most often need to do.
Mostly I use Resharpers or TestDriven.NET testrunners, and I cant find any easy way to do that in either testrunner. In Resharper it would be nice to have a "Add all open tests to session" feature, but after much googling I cant find one, or any other easy way to do this.
Is there a tool, plugin, or what-not to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
AFAIK,没有这样的功能。
或者,您可以
Ctrl+RT
)Ctrl+R T
)在成功运行有趣的测试后(但是),您可以
Ctrl+R D
再次运行这些测试按Ctrl+R F
再次运行失败的测试然后您可以创建测试列表。我不这样做,让它们保持最新状态太耗时了。
AFAIK, there isn't such a feature.
Alternatively you could
Ctrl+R T
)Ctrl+R T
)After you managed to run the interesting tests (however), you could
Ctrl+R D
Ctrl+R F
Then you can create test lists. I don't do this, it's to time consuming to keep them up to date.
运行所有测试:按 Ctrl + R、A
Run ALL tests: Press Ctrl + R, A
您是否考虑过在诸如 CruiseControl 之类的构建服务器上自动运行测试?
Have you considered automating your tests to be run on a build server under something like CruiseControl?