What c# mocking framework to use? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T06:58:05Z http://stackoverflow.com/feeds/question/37359 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/37359/what-c-mocking-framework-to-use 45 What c# mocking framework to use? Corin 2008-09-01T01:57:02Z 2009-12-07T18:22:59Z <p>I want to start using mock objects on my next c# project.</p> <p>After a quick google I've found there are many:</p> <ul> <li><a href="http://www.nmock.org/" rel="nofollow">NMock</a> </li> <li><a href="http://www.easymock.net/" rel="nofollow">EasyMock.Net</a></li> <li><a href="http://www.typemock.com" rel="nofollow">TypeMock Isolator</a> <strong><em>Commercial / Paid</em></strong></li> <li><a href="http://ayende.com/projects/rhino-mocks.aspx" rel="nofollow">Rhino Mocks</a></li> <li><a href="http://code.google.com/p/moq/" rel="nofollow">Moq</a></li> </ul> <p>So my question is <strong>what one is your favourite and why?</strong></p> http://stackoverflow.com/questions/37359/what-c-mocking-framework-to-use/37361#37361 32 Answer by Matt Hamilton for What c# mocking framework to use? Matt Hamilton 2008-09-01T01:59:05Z 2008-09-01T02:22:10Z <p>I've not used any of the ones you've listed, so I can't be objective about it, but I use <a href="http://code.google.com/p/moq/" rel="nofollow">Moq</a> and it has been awesome. The fluent, C# 3.0 interface makes it a joy to work with. For example:</p> <pre><code>mockService.Expect(s =&gt; s.GetCustomers()).Returns(new List&lt;Customer&gt;()); </code></pre> <p>@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&lt;Customer&gt; or an interface like IList&lt;Customer&gt;.</p> http://stackoverflow.com/questions/37359/what-c-mocking-framework-to-use/37370#37370 5 Answer by Toran Billups for What c# mocking framework to use? Toran Billups 2008-09-01T02:07:04Z 2008-09-01T02:07:04Z <p>Rhino Mocks</p> <ul> <li>Oren is a genius </li> <li>Open Source</li> </ul> <p>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 ;)</p> <p>For more information, checkout this <a href="http://weblogs.asp.net/rosherove/archive/2007/04/26/choosing-a-mock-object-framework.aspx" rel="nofollow">post</a> by Roy Osherove</p> http://stackoverflow.com/questions/37359/what-c-mocking-framework-to-use/37376#37376 7 Answer by Ngu Soon Hui for What c# mocking framework to use? Ngu Soon Hui 2008-09-01T02:14:37Z 2009-07-03T12:16:18Z <p><a href="http://www.typemock.com" rel="nofollow">Tyemock</a>. 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).</p> <p>The only thing is it is not free for commercial development. </p> <p><strong>Edit: A bit of shameless plug, here's <a href="http://www.typemock.com/Unit%5FTesting%5FASP%5FNET%5FMVC%5Ftutorial.php" rel="nofollow">an article</a> I wrote on unit testing ASP.NET MVC using Typemock AAA syntax.</strong></p> http://stackoverflow.com/questions/37359/what-c-mocking-framework-to-use/37401#37401 11 Answer by John for What c# mocking framework to use? John 2008-09-01T02:54:06Z 2008-09-01T04:15:23Z <p>Roy Osherove has a poll about it on "<a href="http://weblogs.asp.net/rosherove/archive/2007/04/26/choosing-a-mock-object-framework.aspx" rel="nofollow">Choosing a Mock Object Framework</a>". Some frameworks that you have not listed:</p> <ul> <li><a href="http://nunit.org/" rel="nofollow">NUnit.Mocks</a></li> <li><a href="http://nmock.org/index.html" rel="nofollow">NMock2</a></li> </ul> <p>Top 3 frameworks from the poll are:</p> <ol> <li>Rhino Mocks</li> <li>TypeMock</li> <li>NMock</li> </ol> <p>Unfortunately, Moq is not among the choices. But maybe this post will help "<a href="http://www.clariusconsulting.net/blogs/kzu/archive/2008/03/17/WhydoweneedyetanotherNETmockingframework.aspx" rel="nofollow">Why do we need yet another NET mocking framework?</a>" (this is about Moq)</p> http://stackoverflow.com/questions/37359/what-c-mocking-framework-to-use/37405#37405 8 Answer by akmad for What c# mocking framework to use? akmad 2008-09-01T03:09:05Z 2008-09-01T03:09:05Z <p>Another vote for Rhino Mocks here. My reasons are simple: </p> <ol> <li>It's free</li> <li>It's open source</li> <li>It's easy to use. </li> <li>The syntax is great (logical and consistent).</li> </ol> <p>I tried NMock and TypeMock and found both lacking.</p> http://stackoverflow.com/questions/37359/what-c-mocking-framework-to-use/37437#37437 0 Answer by Mr Rogers for What c# mocking framework to use? Mr Rogers 2008-09-01T04:05:33Z 2008-09-01T04:05:33Z <p>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.</p> http://stackoverflow.com/questions/37359/what-c-mocking-framework-to-use/37481#37481 6 Answer by Rob Bazinet for What c# mocking framework to use? Rob Bazinet 2008-09-01T05:19:16Z 2008-09-01T05:19:16Z <p>Are you on .NET 3.5? If you are then consider <a href="http://code.google.com/p/moq/" rel="nofollow">Moq</a>, it is a full-featured mocking framework some some really nice features.</p> <p>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.</p> http://stackoverflow.com/questions/37359/what-c-mocking-framework-to-use/204568#204568 -1 Answer by Mocking_Bird for What c# mocking framework to use? Mocking_Bird 2008-10-15T12:46:42Z 2008-10-15T12:46:42Z <p><a href="http://www.typemock.com" rel="nofollow">Typemock</a> is a more professional <a href="http://www.typemock.com" rel="nofollow">mocking framework</a>, recommended for companies and serious development.</p> <p><a href="http://ayende.com" rel="nofollow">Rhino</a> on the other hand, is free... good for beginners and smaller projects.</p> http://stackoverflow.com/questions/37359/what-c-mocking-framework-to-use/725970#725970 0 Answer by Mo-Typemock for What c# mocking framework to use? Mo-Typemock 2009-04-07T14:16:12Z 2009-04-07T14:16:12Z <p>disclaimer i work for Typemock ...</p> <p>Mr Rogers – A good resource for ASP.NET unit testing ( that doesnt use Rhino as an example ...) - <a href="http://www.typemock.com/ASP.NET_unit_testing_page.php" rel="nofollow">http://www.typemock.com/ASP.NET_unit_testing_page.php</a> </p> http://stackoverflow.com/questions/37359/what-c-mocking-framework-to-use/839395#839395 1 Answer by bangi for What c# mocking framework to use? bangi 2009-05-08T11:23:26Z 2009-05-08T11:23:26Z <p>Do all mock frameworks work only with classes that have interfaces?</p> http://stackoverflow.com/questions/37359/what-c-mocking-framework-to-use/1079133#1079133 1 Answer by Michaël Larouche for What c# mocking framework to use? Michaël Larouche 2009-07-03T12:26:14Z 2009-07-03T12:26:14Z <p>I prefer <a href="http://code.google.com/p/moq/" rel="nofollow">Moq</a> 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</p> http://stackoverflow.com/questions/37359/what-c-mocking-framework-to-use/1861907#1861907 0 Answer by mikwal for What c# mocking framework to use? mikwal 2009-12-07T18:22:59Z 2009-12-07T18:22:59Z <p>An alternitive with intuitive and easy to learn syntax is <a href="http://simpledotnet.codeplex.com/" rel="nofollow">http://simpledotnet.codeplex.com/</a> </p>