best way to run multi-threaded nunit tests - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T00:09:51Z http://stackoverflow.com/feeds/question/352695 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/352695/best-way-to-run-multi-threaded-nunit-tests 0 best way to run multi-threaded nunit tests Martin Moser 2008-12-09T13:27:46Z 2008-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#355752 0 Answer by Martin Moser for best way to run multi-threaded nunit tests Martin Moser 2008-12-10T11:27:41Z 2008-12-10T11:27:41Z <p>I solved the problem by creating an addin for nunit, which "installs" an ITestDecorator.</p>