How to change “Class Library Project” into “Test Project"?

asp.net-mvc-3, unit-testing

Solution

There is a property type guid in the project file. Look at this post: How does Visual Studio /mstest identify test projects?

Problem

While working on ASP.NET MVC3 application, by mistake I have added a Class library as a Unit Test project. But unfortunately I don’t see the "Run Tests" from context menu to test the methods which are created for unit testing . Is there any way to convert the “Class Library Project” into a “Test Project” ?

Original source

Related problems