MSTest 2012 - Run all tests in the project

Having looked at this , I see that I can:

Run a custom test, run tests in specific categories, or run tests defined in * .TestSettings.

In any case, can I just run all the tests in the project without explicitly setting groups / lists / tests?

+4
source share
1 answer

Run this:

MSTest.exe /testcontainer:{ProjectBinFolder}\TestProject.dll 

See also . I think there is no difference between vs2010 and vs2012.

+3
source

All Articles