best way to run multi-threaded nunit tests - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T00:09:51Zhttp://stackoverflow.com/feeds/question/352695http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/352695/best-way-to-run-multi-threaded-nunit-tests0best way to run multi-threaded nunit testsMartin Moser2008-12-09T13:27:46Z2008-12-10T11:27:41Z
<p>I currently trying to find a solution, how to ensure that a test fails if an exception occurs in a thread which is spawn by the test method.</p>
<p>I DON'T want to start a discussion about more than one thread in a unit test. => "unit test".Replace("unit","integration");</p>
<p>I already read a lot of threads in several forums, I know about <a href="http://www.peterprovost.org/blog/post/NUnit-and-Multithreaded-Tests-CrossThreadTestRunner.aspx" rel="nofollow" title="CrossThreadTestRunner">CrossThreadTestRunner</a>, but I'm searching for a solution whichs integrates into nunit, and does not require to rewrite a lot of tests.</p>
http://stackoverflow.com/questions/352695/best-way-to-run-multi-threaded-nunit-tests/355752#3557520Answer by Martin Moser for best way to run multi-threaded nunit testsMartin Moser2008-12-10T11:27:41Z2008-12-10T11:27:41Z<p>I solved the problem by creating an addin for nunit, which "installs" an ITestDecorator.</p>