So, while running Unit Tests, I ran into all the interesting issues in VisualStudio 2008.
For example, when running Visual Studio Unit tests, some tests fail together, but fail individually. This is because some class level variables in this test class are reused in unit tests.
Now, as a rule, I would go to each class and fix this problem manually! However, we are talking about tests that vary in the thousands!
Now an interesting dilemma arises, using both the ReSharper Unit Tests and TFS BuildServer tests, they run together!
Is there a way I could configure the VS Unit Test solution to run in the same way? I want to avoid calling the [TestInitialize] methods in the [TestCleanup] methods.
source share