MSTest & # 8594; Why can't I debug using breakpoints?

I set breakpoints and then run "Run Tests" in Visual Studio. Why doesn't MSTest work before my breakpoints?

+6
debugging visual-studio mstest
source share
3 answers

Choose Debug Tests In Current Context (or else)

+13
source share

For Visual Studio 2012 Express, I chose:

TESTDebugAll Tests

+8
source share

When using MSTest through the Start external program "mstest", specify the /noisolation .

+1
source share

All Articles