How does the Visual Studio 2012 test runner apply threading?

后端 未结 3 1058
野的像风
野的像风 2021-01-05 23:42

Does each Class containing tests run in it\'s own thread? Or does each individual test run in it\'s own thread? If each Class containing tests has its own thread, are these

3条回答
  •  孤城傲影
    2021-01-06 00:12

    Also note that if your unit tests are thread safe, you do have the option to apply threading and have the tests execute in parallel. See this blog post from Microsoft.

提交回复
热议问题