vote up 10 vote down star

Mocking sealed classes can be quite a pain. I currently favor an Adapter pattern to handle this, but something about just keeps feels weird.

So, What is the best way you mock sealed classes?

Java answers are more than welcome. In fact, I would anticipate that the Java community has been dealing with this longer and has a great deal to offer.

But here are some of the .NET opinions:

flag

54% accept rate

5 Answers

vote up 1 vote down check

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 latest post (See point 9).

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.

link|flag
1  
I would argue that you should have a good reason not to seal a class. Leaving a class open means you need to think about how it will be used by inheritors, which opens up a floodgate of decisions about all the code in the class (virtuality, protected properties or private member variables, etc.) It is hard to properly design a class for inheritance. You shouldn't be able to extend a class just for extension's sake; derivation should mean something specific to the problem being modeled. Otherwise, favor composition instead. – Bryan Watts May 26 at 14:46
Bryan - so how would you mock a sealed class then? I agree with you from a theoretical standpoint, but if you write something dependent on your sealed class then your tests depend on the sealed class as well. – LuckyLindy Nov 22 at 7:48
vote up 0 vote down

Is there a way to implement a sealed class from an interface... and mock the interface instead?

Something in me feels that having sealed classes is wrong in the first place, but that's just me :)

link|flag
I think sealed classes are great ... the problem is testing. It stinks that we have to change our entire design because of limitations in testing .NET projects. In many cases D.I. is simply a way to get around the fact that static classes/methods are hard to test. – LuckyLindy Nov 22 at 7:53
vote up 4 vote down

For .NET, you could use something like TypeMock, which uses the profiling API and allows you to hook into calls to nearly anything.

link|flag
+1. Use the right tools. Don't let tools dictate you how you should do things. APIs are for people, not for tools - design them as such. Use DI and interfaces and full decoupling where it makes sense, not just because you need it for testing tools. – Pavel Minaev Oct 30 at 18:09
Pavel - the problem is that the "Right" way in .NET usually leads you down a path of 'Use TypeMock to test'. Following a path where there is only one testing tool available doesn't seem great either. – LuckyLindy Nov 22 at 7:49
vote up 1 vote down

The problem with TypeMock is that it excuses bad design. Now, I know that it is often someone else's bad design that it's hiding, but permitting it into your development process can lead very easily to permitting your own bad designs.

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.

link|flag
Not slapping interfaces on everything in sight just because you need them because of deficiencies of your testing tools is not bad design. In fact, quite the opposite - it's sane design that is about design, not about conforming to your tools. I swear, sometimes I think that TDD as it's often dogmatically practiced should really be called "tools-driven design". Also see weblogs.asp.net/rosherove/archive/… – Pavel Minaev Oct 30 at 18:08
Pavel - do you have another tool other than TypeMock that can provide this type of testing? Testing classes built with sane designs (e.g. using static methods, new calls in code, limiting interfaces to where multiple implementations are needed, etc) are often next to impossible to test. – LuckyLindy Nov 22 at 7:51
vote up 0 vote down

I like to use insults recycled from the Monkey Island 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.

link|flag
2  
nice... and yet no up vote from me – Michael Easter Oct 18 '08 at 15:07
wouldn't expect it; was just in the mood to be a smart-ass. ;) – Nathan Strong Oct 19 '08 at 7:19

Your Answer

Get an OpenID
or

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