vote up 1 vote down star

i am inside the IDE and i can run all the unit tests in a file but is there any way to run all test in a project or solution at once?

flag

4 Answers

vote up 2 vote down check

Right click on the project or solution in the VS solution-explorer and choose 'Run Unit Tests' Or go to the Resharper menu, choose Unit-Testing and choose one of the options from there.

link|flag
vote up 2 vote down

I'm surprised no one mentioned it here, but pretty much all resharper commands can be assigned to specific custom keyboard shortcuts. Go to Tools --> Options --> Keyboard, and find the command you're interested (just type "resharper" in the "show commands containing" text field & you'll find them all). In this specific instance, the "Run All Tests from Solution" command is "ReSharper.UnitTest_RunSolution".

link|flag
This is what I do. I have it mapped to control-shift-x. Makes it nice and fast to run all tests. – Jamie Penney Jun 29 at 0:56
This is the solution I was looking for, but Ilya's ALT+RUN solution over is even better! – Tomas Aug 19 at 11:41
1  
I use CTRL+T, CTRL+T to run tests based on context (current test/fixture); CTRL+T, CTRL+D to debug based on context; CTRL+T, CTRL+S to run tests for the solution & CTRL+T, CTRL+E to re-run the existing test session... I find holding CTRL & hitting TT or TS quicker & easier than typing out RUN (which needs two hands), but each to their own... (it is cool that they got the menu alt-keys to spell out RUN though). – Alconja Aug 19 at 23:35
vote up 9 vote down

If you learn executing menu commands with Alt-Letters, you can execute many commands fast even if they don't have direct shortcuts. Especially, if shortcuts are two-key combos.

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.

link|flag
vote up 1 vote down

Open ReSharper->Windows->Unit Test Explorer and select everything, then hit the run button

link|flag
... why was this voted down? – Matt Briggs Dec 2 '08 at 19:19

Your Answer

Get an OpenID
or

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