What are good examples of perfectly acceptable approaches to development that are NOT test driven development (TDD)?
- by markbruns
The TDD cycle is test, code, refactor, (repeat) and then ship. TDD implies development that is driven by testing, specifically that means understanding requirements and then writing tests first before developing or writing code.
My natural inclination is a philosophical bias in favor of TDD; I would like to be convinced that there are other…