Chris
Chris

Reputation: 8442

Run all test projects in Visual Studio

I have one test project for each project in my solution. Is there a way I can run all of them at once or am I dreaming?

Upvotes: 0

Views: 1893

Answers (2)

Raathigesh
Raathigesh

Reputation: 2336

You are not dreaming :) This is possible.

Go to 'Test' menu >> 'Run' >> 'All Tests in Solution'

Keyboard Shortcut : Ctrl + R , A

This will run all the tests in the solution.

Upvotes: 5

Mharlin
Mharlin

Reputation: 1705

Go to the menu and choose:

Test -> Windows -> Test View

In that view you just mark them all by pressing Ctrl + A and then press the Run button

Upvotes: 2

Related Questions