What TDD Looks Like In A REAL PROJECT (With Code Examples)
AI Summary
Summary of TDD in Real-World Projects
Introduction
- The video discusses the challenges of teaching Test-Driven Development (TDD) using simple coding exercises and the need for real-world examples.
- Dave Farley, the host, introduces an open-source project he’s working on that demonstrates TDD techniques.
TDD Challenges
- Simple problems are used to teach TDD basics, but they don’t represent real-world code complexity.
- More complex problems can distract learners from focusing on TDD skills.
- Code not written with TDD in mind is inherently less testable.
Real-World TDD Example
- Farley provides a GitHub repo link in the video description containing the example code.
- The project aims to simplify the creation of domain-specific languages (DSLs) for automated acceptance testing.
- Farley prefers internal DSLs over external ones like Cucumber and SpecFlow.
Acceptance Testing and DSLs
- Acceptance tests are written in the project’s programming language, implementing an internal DSL.
- Farley tends to use strings to define parameters in the DSL for simplicity and reduced coupling.
Test Infrastructure Design
- A four-layer model is recommended for automating acceptance tests, separating the specification from the technicalities of the test.
- The DSL layer makes it easy to write test cases, and default values for parameters can be provided.
Parameter Pairing Code
- The video focuses on code that allows supplying default values and managing aliases for parameters.
- Starting with the simplest test case is advised, using an outside-in approach to design.
Functional Isolation
- Functional isolation is introduced to prevent tests from sharing data and becoming unstable.
- Aliases are used to ensure each test run sees separate data.
DSL Context
- A DSL context is created to store aliases and their mappings, allowing for consistent aliasing within a test instance.
- The design evolves to include the DSL context, requiring changes to the constructor of the parameters class.
Implementation and TDD Focus
- The focus is on specifying new behaviors with tests rather than the implementation details.
- The implementation should pass all tests, but the process of TDD is the primary topic.
Conclusion
- TDD encourages writing smaller, simpler code from the user’s perspective.
- It allows for starting code development sooner and being comfortable with learning and adapting.
- Complex systems can be built with TDD, but it encourages simpler, more user-focused design.
- Testing databases and user interfaces should not be part of unit tests, which is discussed in other videos.
Additional Information
- The video is sponsored by various companies aligned with continuous delivery and software engineering topics.
- Farley invites viewers to support their work through Patreon and join their Discord community discussions.
GitHub Repository
- The example code discussed in the video can be found at the provided GitHub repo link in the video description.