How do you mock a Sealed class? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T20:44:44Z http://stackoverflow.com/feeds/question/6484 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/6484/how-do-you-mock-a-sealed-class 10 How do you mock a Sealed class? Brett Veenstra 2008-08-09T00:14:22Z 2009-10-31T18:34:36Z <p><a href="http://www.google.com/search?q=how%20to%20mock%20sealed%20class" rel="nofollow">Mocking sealed classes</a> can be quite a pain. I currently favor an <a href="http://en.wikipedia.org/wiki/Adapter_pattern" rel="nofollow">Adapter pattern</a> to handle this, but something about just keeps feels weird. </p> <p><strong>So, What is the best way you mock sealed classes?</strong></p> <p><em>Java answers are more than welcome</em>. In fact, I would anticipate that the Java community has been dealing with this longer and has a great deal to offer.</p> <p>But here are some of the .NET opinions:</p> <ul> <li><a href="http://haacked.com/archive/2007/08/19/why-duck-typing-matters-to-c-developers.aspx" rel="nofollow">Why Duck Typing Matters for C# Develoepers</a> </li> <li><a href="http://cs.rthand.com/blogs/blog_with_righthand/archive/2008/07/22/Creating-wrappers-for-sealed-and-other-types-for-mocking.aspx" rel="nofollow">Creating wrappers for sealed and other types for mocking</a></li> <li><a href="http://weblogs.asp.net/cibrax/archive/2008/05/16/unit-tests-for-wcf.aspx" rel="nofollow">Unit tests for WCF (and Moq)</a></li> </ul> http://stackoverflow.com/questions/6484/how-do-you-mock-a-sealed-class/6543#6543 0 Answer by Jon Limjap for How do you mock a Sealed class? Jon Limjap 2008-08-09T02:21:32Z 2008-08-09T02:21:32Z <p>Is there a way to implement a sealed class from an interface... and mock the interface instead?</p> <p>Something in me feels that having sealed classes is wrong in the first place, but that's just me :)</p> http://stackoverflow.com/questions/6484/how-do-you-mock-a-sealed-class/6716#6716 1 Answer by abyx for How do you mock a Sealed class? abyx 2008-08-09T09:40:37Z 2008-08-09T09:40:37Z <p>My general rule of thumb is that objects that I need to mock should have a common interface too. I think this is right design-wise and makes tests a lot easier (and is usually what you get if you do TDD). More about this can be read in the Google Testing Blog <a href="http://googletesting.blogspot.com/2008/08/by-miko-hevery-so-you-decided-to.html" rel="nofollow">latest post</a> (See point 9).</p> <p>Also, I've been working mainly in Java in the past 4 years and I can say that I can count on one hand the number of times I've created a final (sealed) class. Another rule here is I should always have a good reason to seal a class, as opposed to sealing it by default.</p> http://stackoverflow.com/questions/6484/how-do-you-mock-a-sealed-class/31731#31731 4 Answer by Haacked for How do you mock a Sealed class? Haacked 2008-08-28T06:44:22Z 2008-08-28T06:44:22Z <p>For .NET, you could use something like <a href="http://www.typemock.com/" rel="nofollow">TypeMock</a>, which uses the profiling API and allows you to hook into calls to nearly anything.</p> http://stackoverflow.com/questions/6484/how-do-you-mock-a-sealed-class/31754#31754 1 Answer by Brad Wilson for How do you mock a Sealed class? Brad Wilson 2008-08-28T07:04:19Z 2008-08-28T07:04:19Z <p>The problem with TypeMock is that it excuses bad design. Now, I know that it is often <em>someone else's</em> bad design that it's hiding, but permitting it into your development process can lead very easily to permitting your own bad designs.</p> <p>I think if you're going to use a mocking framework, you should use a traditional one (like Moq) and create an isolation layer around the unmockable thing, and mock the isolation layer instead.</p> http://stackoverflow.com/questions/6484/how-do-you-mock-a-sealed-class/215134#215134 0 Answer by Nathan Strong for How do you mock a Sealed class? Nathan Strong 2008-10-18T15:03:19Z 2009-10-31T18:34:36Z <p>I like to use insults recycled from the <em>Monkey Island</em> games, e.g. "You fight like a dairy farmer!" Also, "Yo momma" jokes tend to work pretty well. If you're quick-witted, you can come up with your own insults.</p>