When to use partial mocks? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T19:02:52Z http://stackoverflow.com/feeds/question/139752 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/139752/when-to-use-partial-mocks 4 When to use partial mocks? George Mauer 2008-09-26T14:10:59Z 2008-12-18T18:17:04Z <p>I'm starting to get comfortable with the idea of fakes, stubs, mocks, and dynamic mocks. But I am still a little iffy in my understanding of when to use partial mocks. </p> <p>It would seem that if you're planning on mocking a service and need to resort to a partial mock then it is a sign of bad design. Is it that partial mocks are mostly for getting legacy code under test coverage?</p> <p>On the flip side of this, say I am testing a class which has a Reset() method. If I have already confirmed in a separate test that the Reset() method works, and I have some functionality of the class that should end with a call to this method, is it poor test design to do a partial mock of the object and run tests against the partial mock, defining an Expectation on the Reset() method. </p> <p>I currently have several tests set up in this manner, is this sort of thing going to get me in trouble later on?</p> http://stackoverflow.com/questions/139752/when-to-use-partial-mocks/139776#139776 1 Answer by skaffman for When to use partial mocks? skaffman 2008-09-26T14:14:01Z 2008-09-26T14:14:01Z <p>My understanding of partial mock was that it was for mocking abstract classes, with only the abstract methods being mocked, and the existing concrete methods being left as they are?</p> http://stackoverflow.com/questions/139752/when-to-use-partial-mocks/139831#139831 1 Answer by Will for When to use partial mocks? Will 2008-09-26T14:22:12Z 2008-09-26T14:33:39Z <p>Its good design, imho. What happens when somebody comes after you and changes your method, removing the call to Reset? (btw, why so much state in your objects?) You might never know they screwed up until you hit production. By mocking it and asserting on that method call, you can assure nobody is going to mess up while maintaining your code.</p> http://stackoverflow.com/questions/139752/when-to-use-partial-mocks/139920#139920 1 Answer by Nathan Feger for When to use partial mocks? Nathan Feger 2008-09-26T14:36:48Z 2008-09-26T14:36:48Z <p>One could argue that all mocks are 'partial' in that they do not fully implement an interface. As you are trying to test a very focused piece of functionality, you should only mock those aspects of supporting classes that are necessary to exercise the piece of functionality you are testing. </p> <p>This will allow your test to be decoupled from other tests, which is nice.</p> http://stackoverflow.com/questions/139752/when-to-use-partial-mocks/378720#378720 0 Answer by floehopper for When to use partial mocks? floehopper 2008-12-18T18:17:04Z 2008-12-18T18:17:04Z <p>In your example it sounds like the <code>Reset</code> method is an implementation detail and by using a partial mock, you are in danger of coupling your test to the implementation of the class. This will make your test more brittle than it needs to be.</p> <p>I also think it makes tests more confusing to have an object having some methods with real implementations and some with stub implementations. It's just one more thing to remember when you come back to a test later.</p> <p>Can you either (a) use state-based testing to assert that the state of the object is as you expect after the real <code>Reset</code> method has been called internally; or (b) use interaction-based testing to verify that the relevant calls to collaborating objects have been made as a result of the real <code>Reset</code> method?</p> <p>You might find <a href="http://www.mockobjects.com/2007/04/test-smell-mocking-concrete-classes.html" rel="nofollow">Test Smell: Mocking concrete classes</a> from mockobjects.com useful.</p>