I am trying to find a unit test structure for a .NET platform that can handle tests with multiple threads.
NUnit does not support tests that span threads, because, for example, exceptions to these threads are not taken into account. Roy Osherov has an extension, but it is quite outdated 1 .
MBUnit allows multiple threads to run the test at the same time, however I donβt know if it supports threads created inside the thread. For example, in order to test a parallel collection, I want different threads (producer threads and consumer threads) to run simultaneously. It is not enough to have multiple threads executing the same test code.
Thanks Pedro
Pedro felix
source share