blu
blu

Reputation: 13185

Visual Studio 2008 Test Sets

Is it possible to group tests together so I can run a subset of all tests available?

Upvotes: 0

Views: 90

Answers (3)

Bob The Janitor
Bob The Janitor

Reputation: 20802

IN VS 2008 pro and Team lets you create a Test list where you can specify what tests to run.

you can also arrange your tests using Namespaces to specify groups of tests and then run the tests in that specified context.

Upvotes: 1

eglasius
eglasius

Reputation: 36035

Two simple ways would be: by class and by namespace.

There is a run tests in context option, you can use to run a specific test method, but also a test class or namespace. It just depends on what you are pointing at. Open one test in the editor, and put the cursor on the namespace and check it out.

Upvotes: 0

Phil Price
Phil Price

Reputation: 2313

Assuming you are using VSTT, aka MSTest; You can use the Test Lists feature.

Upvotes: 1

Related Questions