What c# mocking framework to use? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T06:58:05Zhttp://stackoverflow.com/feeds/question/37359http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/37359/what-c-mocking-framework-to-use45What c# mocking framework to use?Corin2008-09-01T01:57:02Z2009-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#3736132Answer by Matt Hamilton for What c# mocking framework to use?Matt Hamilton2008-09-01T01:59:05Z2008-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 => s.GetCustomers()).Returns(new List<Customer>());
</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<Customer> or an interface like IList<Customer>.</p>
http://stackoverflow.com/questions/37359/what-c-mocking-framework-to-use/37370#373705Answer by Toran Billups for What c# mocking framework to use?Toran Billups2008-09-01T02:07:04Z2008-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#373767Answer by Ngu Soon Hui for What c# mocking framework to use?Ngu Soon Hui2008-09-01T02:14:37Z2009-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#3740111Answer by John for What c# mocking framework to use?John2008-09-01T02:54:06Z2008-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#374058Answer by akmad for What c# mocking framework to use?akmad2008-09-01T03:09:05Z2008-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#374370Answer by Mr Rogers for What c# mocking framework to use?Mr Rogers2008-09-01T04:05:33Z2008-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#374816Answer by Rob Bazinet for What c# mocking framework to use?Rob Bazinet2008-09-01T05:19:16Z2008-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-1Answer by Mocking_Bird for What c# mocking framework to use?Mocking_Bird2008-10-15T12:46:42Z2008-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#7259700Answer by Mo-Typemock for What c# mocking framework to use?Mo-Typemock2009-04-07T14:16:12Z2009-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#8393951Answer by bangi for What c# mocking framework to use?bangi2009-05-08T11:23:26Z2009-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#10791331Answer by Michaël Larouche for What c# mocking framework to use?Michaël Larouche2009-07-03T12:26:14Z2009-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#18619070Answer by mikwal for What c# mocking framework to use?mikwal2009-12-07T18:22:59Z2009-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>