Skip to content

Latest commit

 

History

History
37 lines (31 loc) · 2.35 KB

tdd.md

File metadata and controls

37 lines (31 loc) · 2.35 KB

Bookmarks tagged [tdd]

https://www.youtube.com/watch?v=Af4M8GMoxi4

Confusion over test doubles starts with what to even call them. You might know them as stubs, proxies, mocks, or spies (but I call them test doubles, because a book you've probably never read declared...


https://www.youtube.com/watch?v=x3MvZ8DFrpE

Slides

Create HTTP mocks with WireMock’s REST API from any language for deterministic testing a...


https://www.baeldung.com/java-test-driven-list

Learn Test-Driven Development while implementing a List implementation in Java.


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