Test interface implementation
- by Michael
I have a interface in our code base that I would like to be able to mock out for unit testing. I am writing a test implementation to allow the individual tests to be able to override the specific methods they are concerned with rather than implementing every method.
I've run into a quandary over how the test implementation should behave if the…