I've read various articles about mocking vs stubing in testing, including Martin Fowler's Mocks Aren't Stubs, but still don't understand the difference. Everything I've found is too difficult or abstract.
|
|
I believe the biggest distinction is that a stub you have already written with predetermined behavior. So you would have a class that implements the dependency (abstract class or interface most likely) you are faking for testing purposes and the methods would just be stubbed out with set responses. They wouldn't do anything fancy and you would have already written the stubbed code for it outside of your test. A mock is something that as part of your test you have to setup with your expectations. A mock is not setup in a predetermined way so you have code that does it in your test. Mocks in a way are determined at runtime since the code that sets the expectations has to run before they do anything. Tests written with mocks usually follow an initialize -> set expectations -> exercise -> verify pattern to testing. While the pre-written stub would follow an initialize -> exercise -> verify. The purpose of both is to eliminate testing all the dependencies of a class or function so your tests are more focused and simpler in what they are trying to prove. I hope that helps. |
|||
|
|
|
Stub is simple fake object. It just makes sure test runs smoothly. |
|||
|
|
|
In the codeschool.com course, Rails Testing for Zombies, they give this definition of the terms: Stub
Mock
So as Sean Copenhaver described in his answer, the difference is that mocks set expectations (i.e. make assertions, about whether or how they get called). |
|||
|
|
|
A Mock is just testing behaviour, making sure certain methods are called. A Stub is a testable version (per say) of a particular object. What do you mean an Apple way? |
|||||||||||||||
|
|
I think the most important difference between them is their intentions. Let me try to explain it in WHY stub vs. WHY mock Suppose I'm writing test code for my mac twitter client's public timeline controller Here is test sample code
By writing mock, you discover the objects collaboration relationship by verifying the expectation are met, while stub only simulate the object's behavior. I suggest to read this article if you're trying to know more about mocks: http://jmock.org/oopsla2004.pdf |
||||
|
|
|
Stubs are used on methods with an expected return value which you setup in your test. Mocks are used on void methods which are verified in the Assert that they are called. |
|||
|
|
|
following is my understanding...
|
|||
|
|
|
Here is a very good article about differences between mocking and stubbing with examples in Mocha, Flex Mock, and RSpec. |
|||
|
|
|
@never_had_a_name The Apple way full screen image |
|||||||
|
