I'd like to know if there is any simple way of running with MSTests a certain category of tests. I currently have some Unit and Integration tests. Generally, I just want to run Unit-Tests.
I know you can tag each test method with a category, but from what I've seen it seems like it is only useful if you want to create different tests lists. That doesn't seem so useful, as for each new test I'd have to update that list.
I've also tried putting Integration tests in one project and Unit tests in another one, but I can see only 3 options for running tests: Solution and Context-Wide and Impacted tests, so I guess this doesn't help a lot.
How do you guys do it?
Thanks