Multithreaded Block Testing

Can anyone recommend any good unit testing books for multitasking applications? Also, can anyone recommend applications or utilities that can be used for multi-threaded testing, similar to the ConTest java tool (which I did not use, but recommended to each other)?

Any help, especially related to unit testing in C # for multithreaded applications, is especially welcome.

thanks. Bean.

+6
multithreading c # unit-testing
source share
1 answer

I ported multithreadedTC from Java to .NET and named it TickingTest . It does not have all the features of the original, but I found it useful. The most important thing that it is missing is the ability to keep track of threads running during the test.

+1
source share

All Articles