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:

  1. Concepts many core visually
  2. Automatically does not target many cores, but it is configured
  3. 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

Popular posts from this blog

asp.net - Javascript/DOM Why is does my form not support submit()? -

sockets - Delphi: TTcpServer, connection reset when reading -

javascript - Classic ASP "ExecuteGlobal" statement acting differently on two servers -