Iam trying to create a new test project. I remember selecting the names of functions while creating the test project so that system automatically creates Test Methods for those.
But Iam unable to find those options in VS2010 now . Am I missing some thing ?
I go for Add New Project-> C#-> Test-> Test Project
One more doubt that I have is that , the test project that I create like this is Nunit or MSTest ? I do not see any reference to any nunit dlls but Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll
Nor I do see any option for nUnit/MSTest ..
Any help ?
Thank you so much for going through my doubt ?
Instead of creating a new test project, do like this: Right click the class you want to test and select “Create Unit Tests…” in the context menu.
The project that is created is MSTest (or “Visual Studio Unit Testing Framework”), not NUnit.