如何将某些 Visual Studio 2010 键绑定映射到 nunit 的 DEBUG 和 RUN 命令?
Visual Studio 有两个用于单元测试的默认键绑定:-
CTRL-R then CTRL-T : Debug the current unit test 'context'
(ie where the cursor is currently flashing).
CTRL-R then T : Run the current unit test 'context' (as above).
如何重新绑定它们以使用 nUnit? 目前,它们仅支持 MSTest。
我还安装了 ReSharper,如果有帮助的话。
我通过 NuGet 获取 nUnit。我不通过某些 msi、fwiw 手动安装 nUnit。
Visual Studio has two default keybindings for unit testing :-
CTRL-R then CTRL-T : Debug the current unit test 'context'
(ie where the cursor is currently flashing).
CTRL-R then T : Run the current unit test 'context' (as above).
How can I rebind these to use nUnit? Currently, they only support MSTest.
I also have ReSharper installed, if that's any help.
I grab nUnit via NuGet. I don't manually install nUnit via some msi, fwiw.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在工具 -> 上得到了这个选项->环境->键盘
有 2 个 resharper 命令,搜索 contextrun 并分配 Ctrl+R、T,搜索 contextdebug 并分配 Ctrl+R、Ctrl+T
I got this on Tool -> Options -> Environment -> Keyboard
Theres 2 resharper commands, search for contextrun and assign Ctrl+R, T and for contextdebug and assign Ctrl+R,Ctrl+T
查看 Resharper-> 单元测试菜单。有运行测试的选项。我使用从解决方案运行所有测试(Ctrl+R、Ctrl+U - 对我来说,R 和 U 代表运行单元测试)。如果您有 NUnit 测试,它将运行它们。它还将运行 MSTest 测试。
要更改键绑定,请转到 VS2010 菜单“工具”->“选项”。然后选择左侧的键盘并在“显示包含的命令”文本框中输入“runsol”。分配您首选的按键绑定。
Look in Resharper->Unit Tests menu. There are options to run tests. I use Run All Tests from Solution (Ctrl+R, Ctrl+U - for me R and U stand for Run Unit tests). If You have NUnit Tests it will run them. It will run MSTest tests also.
To change key bindings go to VS2010 menu Tools->Options. Then select Keyboard on left and enter 'runsol' in 'Show commands containing' textbox. Assign Your preferred key binding.