vote up 7 vote down star

Is there a way to select which TestMethods you want to execute in Visual Studio 2008 Unit Test project while debugging? I want to debug one particular test without having my other TestMethods execute during each debug session.

flag

77% accept rate

3 Answers

vote up 9 vote down check

Click on a test method name, then press Ctrl+R, Ctrl+T. (Or go to Test / Debug / Tests in Current Context.)

link|flag
That worked. Thanks for the tip. – Michael Kniskern Nov 5 '08 at 21:29
Good tip for the day. – bovium Nov 5 '08 at 21:43
vote up 2 vote down

You've got two options when running tests. Look at your Test Tools toolbar. There are four buttons: Run tests in current context, debug tests in current context, run all tests, and debug all tests in solution.

When you want to debug a single test, you can put your cursor in the body of the test and click one of the "current context" test run buttons. To run all tests in a class, put the cursor at the test class name and click one of those buttons.

Alternatively, you can create a test list (Test->Create New Test List), and use that to select the tests you want to run. You can also use theis to disable and remove tests.

link|flag
Same result, different implementation as Jon's suggestion...+1 – Michael Kniskern Nov 5 '08 at 21:53
vote up 3 vote down

There are probably other ways, but I install TestDriven.NET. It allows you to right click on a test method (MSTest, NUnit, MbUnit, etc) and select Run in Debugger. I highly recommend it.

link|flag
TestDriven.NET looks like a great Visual Studio add-in, but I have to purchase it...:( – Michael Kniskern Nov 5 '08 at 21:30

Your Answer

Get an OpenID
or

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