Reputation: 2675
Say I have several dlls of unit tests and a couple of dlls of integration tests. I want to rerun all unit tests by a click or by a hotkey for example.
How to accomplish that using Visual Studio 2013? By the way I have DotCover and ReSharper from JetBrains, maybe these tools can help?
Upvotes: 0
Views: 145
Reputation: 64923
Visual Studio 2013 / MSTest has a feature called playlist.
You might create a playlist of integration tests and other one of unit tests, and this should be enough for you, since you'll be able to execute:
Learn more about playlists here.
Upvotes: 1