How does NUnit (and MSTest) handle tests that change static/shared variables? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T07:44:17Zhttp://stackoverflow.com/feeds/question/154180http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/154180/how-does-nunit-and-mstest-handle-tests-that-change-static-shared-variables2How does NUnit (and MSTest) handle tests that change static/shared variables?JonStonecash2008-09-30T17:47:59Z2008-10-03T04:51:22Z
<p>I have some code that uses the shared gateway pattern to implement an inversion of control container. I have several hundred NUnit unit tests that exercises the code that uses this IOC. They all work (on my machine!) but I am concerned that these tests might fail under load. I seem to remember that NUnit (and MSTest) attempts to run tests in parallel on multiple threads (which would definitely trigger race conditions on the static/shared gateway) but I cannot find any documentation that says what actually happens. My experience is that NUnit seems to be running the tests sequencially. My question is, does NUnit (or MSTest) ever run unit tests in parallel? If so, under what conditions? And, can I turn this off via some sort of configuration option?</p>
http://stackoverflow.com/questions/154180/how-does-nunit-and-mstest-handle-tests-that-change-static-shared-variables/154258#1542582Answer by Josh for How does NUnit (and MSTest) handle tests that change static/shared variables?Josh2008-09-30T18:10:35Z2008-09-30T18:10:35Z<p><strong>MsTest:</strong><br />
So according to David Williamson, from Microsoft Visual Studio Team System, on <a href="http://forums.microsoft.com/msdn/ShowPost.aspx?PostID=3894574&SiteID=1" rel="nofollow">this post</a> in the MSDN forums:</p>
<blockquote>
<p>Tests absolutely do NOT run in
parallel when run in VS or via
mstest.exe. If they are run in a
Load Test through VS then that is a
different story. Basic execution,
however, is always serial.</p>
</blockquote>
<p>Also, tests run using MsTest are each run using a different thread in order to ensure that you have a clean slate for each test. There is no way to disable this behavior.</p>
<p><strong>NUnit:</strong><br />
NUnit runs all tests on the same thread.</p>