DORA is a long running research program that seeks to understand the capabilities that drive software delivery and operations performance. DORA helps teams apply those capabilities, leading to better organizational performance.| dora.dev
An exploration of TDD practices to clarify, provide guidance and help with adoption of this development practice.| control-plane.io
How to code generate mocks in Swift? How to integrate Sourcery to an Xcode project? How to unit test an API service by mocking URLSession in Swift? These are the questions to answer in this article.| Yet Another Swift Blog
Some reasons why you might not want to remove data from the database between automated tests: speed, correctness, data growth issues and parallelism advantages| calpaterson.com
Unit Tests are focused on small parts of a code-base, defined in regular programming tools, and fast. There is disagreement on whether units should be solitary or sociable.| martinfowler.com
In a previous article I tried to explain why I’m not satisfied with the existing schools of TDD: They are not really tapping the developers’ capability to think. At least for my taste. Or to say it more bluntly: They are dumbing down developers. Sure,…| ralfw-de
My #2 problem with arguing testing pyramids vs honeycombs is the disparate definitions of unit test| martinfowler.com
A common issue when writing tests for real-world software is how to deal with third-party dependencies. Let’s examine an old, but counter-intuitive principle.| Hynek Schlawack