Do Unit Tests target Multiple Cores in Visual Studio? -
As our unit test number has increased, we are finding it difficult to run all the tests on our developer machines continuously . Does anyone know if Visual Studio 2008:
- Concepts many core visually
- Automatically does not target many cores, but it is configured
- No
Run the test in a single thread , So only one core is used. This is the desired behavior, because by running on more threads, tests can cause unexpected behavior if you are using a stable variable, or any type of global condition (for example, a test is a stable variable It changes, and when this change ends it is returned. If another test is running at the same time, then it can expect a different value).
Comments
Post a Comment