I'm using MSpec for my latest project, and overall I'm really happy with it. However, I do have an issue with concurrency when my tests run in paralel and I'm wondering if anybody has run into this issue or, even better, has a solution?
MSpec heavily relies on static methods and variables to work.
Now it appears when I define static variables in my base classes, that are used by multiple test classes, and I run my tests in paralel, that they share the same static variables and thus interfere with eachother.
I'm using both NCrunch and Resharper as my testrunners and I'm experiencing the problem in both.
Anybody familiar with this problem?
Static fields are not thread-safe by default. To make them thread-safe you can decorate them with the
[ThreadStatic]
attribute.Have a look at ThreadStaticAttribute Class at MSDN for more info.