vote up 44 vote down star
24

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?

flag

64% accept rate
Links would have been nice. – James McMahon Dec 3 '08 at 15:51
Added links, added Moq to the line up. – Gishu Dec 7 '08 at 8:46
The link to EasyMock.Net isn't working. The correct URL is sourceforge.net/projects/easymocknet. – andyp Mar 12 at 11:24
see also stackoverflow.com/questions/642620/… – Ian Ringrose Jul 23 at 15:06

11 Answers

vote up 32 vote down check

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:

mockService.Expect(s => s.GetCustomers()).Returns(new List<Customer>());

@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>.

link|flag
C# 3.0, nemo, which means .NET 3.5 or above. – Matt Hamilton Dec 3 '08 at 19:40
I dislike Moq cause everything is a Mock there. Mock is supposed to be one per test. – Arnis L. Oct 5 at 7:01
Huh? "Everything is a Mock"? I mock only the things that support the object I'm testing, nothing more. – Matt Hamilton Oct 5 at 7:45
vote up 1 vote down

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

link|flag
vote up 1 vote down

Do all mock frameworks work only with classes that have interfaces?

link|flag
No, some work with classes that have no interfaces. I've tried it with TypeMock. And according to the documentation, Moq can too. – Lernkurve May 30 at 12:32
vote up 0 vote down

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

link|flag
vote up 0 vote down

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.

link|flag
Typemock has a product for open source projects that is free – Dror Helper Feb 5 at 7:11
vote up 6 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 8 vote down

Another vote for Rhino Mocks here. My reasons are simple:

  1. It's free
  2. It's open source
  3. It's easy to use.
  4. The syntax is great (logical and consistent).

I tried NMock and TypeMock and found both lacking.

link|flag
[Personal Opinion] It's also a bit too much to get started... I checked it out.. i guess last year and found the learning curve steep and the syntax non-intuitive. – Gishu Dec 7 '08 at 6:22
Agreed. I'm looking at switching to Moq. There is no way I can get buy-in from all 10 of my developers if they have to go through what I've gone through to even scratch the surface of Rhino. – womp Mar 27 at 17:17
vote up 11 vote down

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:

  1. Rhino Mocks
  2. TypeMock
  3. NMock

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)

link|flag
vote up 6 vote down

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.

link|flag
vote up 5 vote down

Rhino Mocks

  • Oren is a genius
  • Open Source

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.