When unit testing, it is common to create a fake implementation of an interface so that you can test another component in isolation. But how do you handle the case where each test needs a fake that does something different?
Here’s an approach that I’ve found quite useful - a fake implementation that allows you to plug in the behaviour needed for the test at hand.
Consider a simple interface for sending messages:
Using explicit implementation of the interface, we can create a fake that makes it really easy for consumers to provide their own functionality:
This fake acts as a null implementation if not configured; the writable properties SendMessage and PostMessage allow consumers to provide their own implementation.
For example, here’s a simple test class demonstration.
Comments
blog comments powered by Disqus