What is the best unit testing framework for ASP.NET (C # .NET 3.5)?

I would like information on available unit testing modules in .NET realm. Especially those suitable for ASP.NET (C # .NET 3.5).

Your comments and suggestions will be highly appreciated.

+3
source share
3 answers

It depends on how you define "Best." There are various elements that need to be supported by a modular test structure, and the choice is mainly friendly to the developers. I have used NUnit / MSTest in the past, and I like NUnit because it not only supports various mocking structures like NMock, RhinoMock, MoQ, etc. it also makes life easier when you can directly run unit tests from the NUnit user interface without opening the VS interface.

If you are using VS2008, then you can also use MSTest or NUnit ....

+2
source

Visual Studios 2010 has a set of features for testing with various kinds of fantasies.

+1
source

. NUnit + RhinoMocks + Resharper.

0

All Articles