unit testing is asp.net
HI,how to do unit testing in asp.net,please forward any tutorial links(video).
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sandeep Singh ShekhawatPosted Jun 2, 2013, 11:26 AM
If you have web form like .aspx and .aspx.cs page then you can't do unit testing of these pages/classes but I am not sure about unit testing in MVC, may be you can do in MVC.
Finally you can do unit testing of class library project means these contain .cs(C# Classes) files.
You need to create a unit test project from VS.
Follow steps these mention in below link
http://msdn.microsoft.com/en-us/library/ms182532(v=vs.100).aspx
http://www.codeproject.com/Articles/391465/Creating-Unit-tests-for-your-csharp-code
Check
OUR RECOMMENDED SOLUTIONS