I want to start using mock objects on my next c# project.
After a quick google I've found there are many:
- NMock
- EasyMock.Net
- TypeMock Isolator Commercial / Paid
- Rhino Mocks
- Moq
So my question is what one is your favourite and why?
|
23
|
I want to start using mock objects on my next c# project. After a quick google I've found there are many:
So my question is what one is your favourite and why?
|
||||||||
|
|
|
I've not used any of the ones you've listed, so I can't be objective about it, but I use Moq and it has been awesome. The fluent, C# 3.0 interface makes it a joy to work with. For example:
@Ngu Soon Hui, I wasn't aware that the other frameworks don't have compile-time checking. Moq certainly does. In my example above, if the service class that mockService is mocking doesn't have a GetCustomers() method, I would get a compile-time error. I'd also get one if the GetCustomers() method didn't return a List<Customer> or an interface like IList<Customer>. |
||||||
|
|
|
Rhino Mocks
If you need to test a ton of legacy code, you might look into TypeMock as it can mock just about anything known to man ;) For more information, checkout this post by Roy Osherove |
||
|
|
|
|
Tyemock. It's the only mocking framework that allows you to check your mocking calls in compile time ( You can use natural mock for that purpose). The only thing is it is not free for commercial development. Edit: A bit of shameless plug, here's an article I wrote on unit testing ASP.NET MVC using Typemock AAA syntax. |
|||
|
|
|
|
Roy Osherove has a poll about it on "Choosing a Mock Object Framework". Some frameworks that you have not listed: Top 3 frameworks from the poll are:
Unfortunately, Moq is not among the choices. But maybe this post will help "Why do we need yet another NET mocking framework?" (this is about Moq) |
|||
|
|
|
|
Another vote for Rhino Mocks here. My reasons are simple:
I tried NMock and TypeMock and found both lacking. |
||||
|
|
|
I've had the same question as Corin because I've wanted to get more into test driven development. It seems like most of the examples for ASP.NET MVC that I found had Rhino Mocks examples. However, most of my test driven development has been with Ruby on Rails and Moq has really appealed to me. I love the simplicity and forward thinking design. It's definitely one I plan on trying. |
||
|
|
|
|
Are you on .NET 3.5? If you are then consider Moq, it is a full-featured mocking framework some some really nice features. If not on .NET 3.5 then I would go with Rhino Mocks. They have a huge community following so the answers to your questions should be easily available. |
||
|
|
|
|
Typemock is a more professional mocking framework, recommended for companies and serious development. Rhino on the other hand, is free... good for beginners and smaller projects. |
||
|
|
|
disclaimer i work for Typemock ... Mr Rogers – A good resource for ASP.NET unit testing ( that doesnt use Rhino as an example ...) - http://www.typemock.com/ASP.NET_unit_testing_page.php |
||
|
|
|
|
Do all mock frameworks work only with classes that have interfaces? |
||
|
|
|
I prefer Moq when I develop with .NET 3.5. Very nice use of the lambda expressions. Otherwise I think I'll use RhinoMocks on a .NET 2.0 only project |
||
|
|