Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 1.23 KB

stub.md

File metadata and controls

21 lines (18 loc) · 1.23 KB

Bookmarks tagged [stub]

https://martinfowler.com/articles/mocksArentStubs.html

The article addresses among other things the following:

  • The Difference Between Mocks and Stubs
  • Classical and Mockist Testing
  • driving TDD

https://blog.cleancoder.com/uncle-bob/2014/05/14/TheLittleMocker.html

It's a conversation about mocking where the different test doubles (that is stubs, spies and mocks) and fakes are explained. The author also presents his way of "mocking" things, relying less on mocki...