Reputation: 1542
Is there an easy way to run all tests in open test classes in Visual Studio. I find that this is what I most often need to do.
Mostly I use Resharpers or TestDriven.NET testrunners, and I cant find any easy way to do that in either testrunner. In Resharper it would be nice to have a "Add all open tests to session" feature, but after much googling I cant find one, or any other easy way to do this.
Is there a tool, plugin, or what-not to do this?
Upvotes: 8
Views: 1775
Reputation: 3733
Have you considered automating your tests to be run on a build server under something like CruiseControl?
Upvotes: 0
Reputation: 64658
AFAIK, there isn't such a feature.
Alternatively you could
Ctrl+R T
)Ctrl+R T
)After you managed to run the interesting tests (however), you could
Ctrl+R D
Ctrl+R F
Then you can create test lists. I don't do this, it's to time consuming to keep them up to date.
Upvotes: 11