A guided path for TDD

I do not recall who introduced me to Test-Driven Development (TDD), but I have always been interested in the testing aspect of software development. I vividly remember reading the iconic book Test-Driven Development By Example by Kent Beck on my commute. Every page was a discovery, and I felt a sense of frustration, as the baby steps conflicted with my confidence that my code would work.

However, given the context of my early career, I did not have the opportunity to explore TDD further. The places I worked at unfortunately cared more about delivering tasks quickly than sacrificing time for testing. I share more about my TDD history in a blog post, but I was astonished by the lack of care for testing among practitioners. My intention here is to share my previous experience with writing tests and resources that I think are helpful. This is not a definitive guide to, TDD but rather a structured way to get started.

Table of contents

This curated content is organized in a fashion that focuses on the timeline required for incorporating TDD into practice. It highlights the need for continuous improvement, as technology stacks, tools, and frameworks are constantly evolving.

Testing timeline by Matheus Marabesi

For those just starting out, it is recommended to go through each section in order. Experienced practitioners may choose to skip the introduction and go directly to the content they find most relevant.

1. Introduction
  • What is testing? - Discover what a test is from the perspective of a practitioner and the different shapes that are out there to distribute the different types of tests from the point of view of TDD
  • Should you test? - In this section there is a discussion about testing or not and its benefits are discussed. More specifically on the automation part of it
  • A gentle introduction to TDD - TDD is introduced as a methodology and describes its different flavors
  • The many types of tests in software testing - Integration? End-to-end? Acceptance? Let’s see how they fit from a testing point of view
  • The differences between frontend and backend - Tips that are hidden from practitioners’ point of view writing tests for client and server applications.
2. Changing your mindset
3. Building software with TDD vs software without TDD
4. A learning path
5. Test doubles
7. Advanced topics
7. Strategies for testing
8. Empirical evidence

Reduced numbre of defects

Improved code design

  • Does Test-Driven Development Really Improve Software Design Quality?
    • Emergent Design: TDD enables design to evolve through short, iterative cycles of writing tests and code. This approach allows developers to refine their designs continuously, leading to a more adaptable architecture
    • Modularization: TDD encourages developers to create smaller, more focused units of code. This modularization improves the manageability of the codebase and facilitates easier maintenance and understanding

Resources

License

The content here is under the Attribution 4.0 International (CC BY 4.0) license