This is what I\'m getting when I build my Test project:
With th
One more point:
Environment.ExitCode = 0;
Needs to add to end of each test during its clean-up! I learned this hard way. MS unit test framework checks this, and not run next test with non-zero ExitCode from previous test!
This is a very good thread, I solve almost all my unit test issues in this thread.