views:

148

answers:

1

Hi Guys,

what is pluses and minuses of each framework, comparing to each other? How well they work with ASP.NET MVC? How well they support mocking?

A: 

I work with NUnit only. It is pretty good for me. It is integrated into different addons for Visual Studio like Resharper, it supports in TeamCity and it has stand alone test launcher.

And looks like NUnit become an industry standart for unit testing.

And we haven't any major issues with Moq (http://code.google.com/p/moq/) or Rhino.Mock (http://ayende.com/projects/rhino-mocks.aspx).

As I remember Asp.Net Mvc (I worked with 1.0 only) uses MS Unit. You may easily switch from MSUnit to NUnit.

Similar question was asked already, may be you find some details there: http://stackoverflow.com/questions/261139/nunit-vs-mbunit-vs-mstest-vs-xunit-net

VMykyt