We had a test project that started out as MbUnit v3 / Gallio but decided to go to MSTest. We took out the Gallio/MbUnit tests and added the reference to the MSTest stuff (Microsoft.VisualStudio.QualityTools.UnitTestFramework) and swapped out the C# attributes to use MSTest verbiage ([TestMethod], etc), but when attempting to run tests Visual Studio doesn't see the tests at all. Everything compiles fine, but the Tests view is completely empty.
The syntax of the text is exactly the same as any other MSTest project. I'd rather know what's different about this project and hand-merge whatever VS is looking for than delete and recreate the test project since the project is already in TFS and don't want delete history.
Thanks for any help.
Problem solved, it was my fault. I forgot to add [TestClass] to the class. Lame.