Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
10  
ha ha ha... apple way... – Arnis L. Aug 11 '10 at 14:32
2  
a full screen pic with no word at all will do an apple way in my understanding ... lol – Andy Lin Aug 11 '10 at 14:39
2  
You mean in a way that can't be used by lefties? – Andy Aug 11 '10 at 14:44

10 Answers

up vote 41 down vote accepted

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.

share|improve this answer

Stub is simple fake object. It just makes sure test runs smoothly.
Mock is smarter stub. You verify Your test passes through it.

share|improve this answer

In the codeschool.com course, Rails Testing for Zombies, they give this definition of the terms:

Stub

For replacing a method with code that returns a specified result.

Mock

A stub with an assertion that the method gets called.

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).

share|improve this answer

Stubs don't fail your tests, mock can.

share|improve this answer

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?

share|improve this answer
3  
"What do you mean an Apple way?" Use Helvetica – kubi Aug 11 '10 at 14:35
In an Apple way as opposed to in a Microsoft way :) – never_had_a_name Aug 11 '10 at 14:40
10  
What is iTesting? iTesting is beautiful, iTesting is thin, you already know how to use it. iTesting is the future, and it's only... just... begun. – Andy Aug 11 '10 at 14:42
Does this help the situation any? – NebulaFox Aug 11 '10 at 22:07
@Andy: I'm sitting on my Mac, am under time pressure to prepare a workshop on unit testing and just lost 15 Minutes laughing and envisioning Steve presenting iTesting in one of his Keynotes. You're evil. – froh42 Mar 30 '11 at 13:00

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

twitter_api.stub(:public_timeline).and_return(public_timeline_array)
client_ui.should_receive(:insert_timeline_above).with(public_timeline_array)
controller.refresh_public_timeline
  • STUB: The network connection to twitter api is very slow, which make my test slow. I know it will return timelines, so I made a stub simulating http twitter api, so that my test will run it very fast, and I can running the test even i'm offline.
  • MOCK: I haven't write my ui methods yet, and I'm not sure what methods I need to write for my ui object. I hope to know how my controller will collaborate with my ui object by writing the test 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

share|improve this answer

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.

share|improve this answer

following is my understanding...

  • if you create test objects locally and feed your local service with that, you are using mock object. this will give a test for the method you implemented in your local service. it is used to verify behaviors

  • when you get the test data from the real service provider, though from a test version of interface and get a test version of the object, you are working with stubs the stub can have logic to accept certain input and give corresponding output to help you perform state verification...

share|improve this answer

Here is a very good article about differences between mocking and stubbing with examples in Mocha, Flex Mock, and RSpec.

share|improve this answer

@never_had_a_name

The Apple way full screen image

http://blogs.codes-sources.com/tja/archive/2009/09/15/tests-diff-rence-entre-les-mocks-et-les-stubs.aspx

share|improve this answer
Link is in French, but maybe I don't get the joke? – Pieter Kuijpers Oct 5 '12 at 18:37
1  
+1 Good answer. The OP asked for the Apple explanation and you gave it. The image may have French captions, but if you can't translate "Communication" and "verification du résultat" into English, then there is something seriously wrong with you. – Daniel Dyson Oct 6 '12 at 21:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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