VS 11 Beta Cannot start process because a file name has not been provided

后端 未结 5 436
余生分开走
余生分开走 2021-01-12 05:13

This is what I\'m getting when I build my Test project:

\"VS

With th

5条回答
  •  梦毁少年i
    2021-01-12 05:45

    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.

提交回复
热议问题