What's the difference between a mock & stub?
我读过各种关于嘲笑与测试中残段的文章,包括Martin Fowler的Mocks Are Stubs,但仍不明白其中的差别。
Stub
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 would not do anything fancy and you would have already written the stubbed code for it outside of your test.
Mock
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.
Difference
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
.
Similarity
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.
Foreword
There are several definitions of objects, that are not real. The general term is test double . This term encompasses: dummy , fake , stub , mock .
Reference
According to Martin Fowler's article:
Style
Mocks vs Stubs = Behavioral testing vs State testing
Principle
According to the principle of Test only one thing per test, there may be several stubs in one test, but generally there is only one mock.
Lifecycle
Test lifecycle with stubs:
Test lifecycle with mocks:
Summary
Both mocks and stubs testing give an answer for the question: What is the result?
Testing with mocks are also interested in: How the result has been achieved?
Stub is simple fake object. It just makes sure test runs smoothly.
Mock is smarter stub. You verify Your test passes through it.
上一篇: 我应该什么时候使用noexcept?
下一篇: 模拟和存根之间有什么区别?