I am currently working on a solution that has currently 32 Unittests. I have been working with the resharper test runner - which works fine. All tests are running, all tests are showing the right test outcome.
However, the tests are not running when using the Visual Studio test explorer.
The Test Explorer is showing all unit tests, but once clicking on "Run All", all tests are getting greyed out and show no result of the test run:
- All test classes are public
- All test classes are having the
[TestClass]
attribute declared - All test methods are using the
[TestMethod]
attribute - Both the productivity code and the test projects are targeting .NET 3.5.
- I have already tried to clean build my solution, and / or delete all
obj
,bin
,Debug
andRelease
folders
I d appreciate any hints which would explain this behaviour.