About Test-Driven Development (TDD)
Last updated
Last updated
somewhat similar acronyms BDD, ATDD
see table at the end of this article
for the sake of simplicity and clarity: I'm using the acronym / term TDD
I'm talking about "tests that validate high-level system behaviors" : so I'm talking about BDD
BDD = Behavior-Driven Development ≈ TDF = Test-Driven Feature
I'm talking about "acceptance tests: so I'm talking about ATDD
here's a simplified description
Manage requirements
make sure requirements are relevant to business
JTBD
Pick up one requirement = the most important requirement
Write a short specification for the feature
detailed enough so it's actionable
see for example:
Specification by Example: https://en.wikipedia.org/wiki/Specification_by_example
specify acceptance criteria
Write the Acceptance Test Case.
While your Acceptance Test Case fails:
Configure / Develop
Test your Acceptance Test Case
Refactor and clean the stuff you configured / created.
Run your Acceptance Test Cases.
to make sure that your stuff works after cleaning
Run Regression Test Suites.
to make sure that nothing got broken in development
Add your Acceptance Test Case to Regression Test Suite.
Deploy your solution to production.
Write a specification for your Use Case
given when then
SBE "Specification by Example"
Create Test Case in testRigor for the new feature as per Use Case specification
Run the Test Case
of course it fails as you haven't developed / configured the feature
Develop / configure the feature
Keep on running the Test Case(s) until it passes
Polish the artefacts you have created or modified
Run the Test Case(s) once again
Run your Development Regression Test Suite
Deploy your changes
Run your Production Test Suite
The Cycles of TDD
Youtube channel: Continuos Delivery
Book: "Modern Software Engineering: Doing What Works to Build Better Software Faster (2022)