vote up 17 vote down star
8

For obvious productivity reasons, I make an effort of learning and using as many of the keyboard shortcuts for the various Re# commands.

However, it seems that the unit test runner does not have any associated shortcut keys. I want to be able to select certain tests and be able to run or debug them without resorting to grabbing the mouse each time. Is using the mouse my only option?

flag

65% accept rate

6 Answers

vote up 12 vote down check

ReSharper adds items to Visual Studio's keyboard settings dialog box.

Go to:

Tools -> Options, Environment -> Keyboard

In the search bar, type "resharper" and see the vast options that you can control with the keyboard.

Specifically, there is one to launch the unit test explorer window, and there's a couple called

  • ReSharper.ReSharper_UnitTest_RunSolution
  • ReSharper.ReSharper_UnitTest_RunContext

that are likely what you need.

link|flag
1  
and in another note, I don't use this... I map CTRL+T to TestDriven.NET. – Ben Scheirman Oct 6 '08 at 16:59
Ctrl+T now maps to 'Go to type' in R#, so I ended up using Alt+T as an alternative. – Even Mien May 15 at 21:34
Even - I thinks that's when you choose to preserve VS key bindings, which I don't. In fact, most R# users I know choose the R# key bindings, as they seem to feel more natural (at least to me) – Ben Scheirman Aug 27 at 2:30
vote up 2 vote down

For Resharper 4.5 OOTB:

Unit Test Explorer : Ctrl+Alt+U
Unit Test Sessions : Ctrl+Alt+T
Close Active Window : Shift+Esc

I just noticed last week that my keyboard has a right-click button between Alt and Ctrl on the right side, so no mouse needed to mouse to a specific test. Yeah!

Custom key mapping via Ben Scheirman's method:
ReSharper.ReSharper_UnitTest_ContextDebug : Alt+T, Alt+D
ReSharper.ReSharper_UnitTest_ContextProfile : Alt+T, Alt+P
ReSharper.ReSharper_UnitTest_ContextRun : Alt+T, Alt+T and Alt+T, Alt+R
ReSharper.ReSharper_UnitTest_RunSolution : Alt+T, Alt+S
ReSharper.ReSharper_UnitTest_RunSolution : Alt+T, Alt+A

link|flag
vote up 2 vote down

You could try ... ALT R U R
- if your cursor is in the Test method, then R# just runs that test
- if its in a test class, but not a method, R# runs all the tests in the class

link|flag
vote up 5 vote down

As for running all tests in solution the command is Alt-RUN, i.e. Alt-R for ReSharper menu, U for Unit Testing, and N for all tests in solution.

NOTE: I found this answer from from stackoverflow user ilya-ryzhenkov on a related question

link|flag
vote up 0 vote down

Sadly, no, but I found this forum post

There are commands listed in the Tools - Options - Keybaord dialog of VS2008 for resharper unit test runner

Resharper.Resharper_UnitTest_ContextRun Resharper.Resharper_UnitTest_RunCurrentSession Resharper.Resharper_UnitTest_RunSolution

Have you tried assigning a keyboard shortcut to these, because I use MSTF and its own test runner, I run all my tests using its shortcut of ctrl r + a, and to run an individual test I either click on the resharper icon (I have Gallio installed) or use test driven.net context menu to run the test.

link|flag
vote up 1 vote down

You might want to check this short-cut cheatsheet.

BTW, even if there's no default key, you can probably bind one by going to the menu Tools->Options, and then to the sub-category General->Keyboard, and typing ReSharper in the search line.

link|flag
OK, Ben Scheirman pointed out exactly what options you are looking for. – davidg Oct 6 '08 at 17:00
Here's the short-cut cheat sheet for Version 4.0: jetbrains.com/resharper/docs/… – Josh Kodroff Oct 6 '08 at 18:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.