Test-Driven Development Workout
Test-Driven Development Workout is a tutorial presented by Bill Wake and Steve Metsker at OOPSLA ’04. PowerPoint
Exploring Extreme Programming
Test-Driven Development Workout is a tutorial presented by Bill Wake and Steve Metsker at OOPSLA ’04. PowerPoint
Refactorings are often described as transformations that preserve semantics, but they still may require new tests. Continue reading Refactorings Require New Tests
Test-Driven Development is Example-Driven Development, and if you’re not careful, TDD can be like teaching to test. Continue reading Test-Driven Development and Teaching to Test
Test-driven development uses tension as one of its tools. Continue reading TDD: Tension, Release, and Generalization
When refactorings change the design of a system, they update the tests just enough to accommodate the revision. This keeps the tests working, but tests have other roles. To continue to support these roles, you often need to further modify the tests and add new ones. Continue reading The Impact of Refactoring on Tests
JUnit is a tool for unit testing; Fit is a tool for system testing. Continue reading Tools – Especially JUnit and Fit
Test-Driven Development: A Practical Guide, Dave Astels. Prentice Hall PTR, 2003. This book is a natural complement to Kent Beck’s Test-Driven Development: By Example. Where Kent’s is focused on the background and theory, Dave’s book focuses on tools, GUI testing, and Continue reading Review – Test-Driven Development (Astels)
OOPSLA ’03 Trip report. Continue reading OOPSLA ’03 Trip Report
Los programadores extremos escriben pruebas antes de escribir el código de producción correspondiente. En “La programación de Probar Primero”, se empieza con una pequeña prueba, luego se escribe únicamente el código necesario para pasarla, y se continúa con la siguiente prueba hasta que el código quede terminado. Continue reading El Semáforo de Probar Primero (The Test-First Stoplight, in Spanish)
Test-Driven Development: By Example, Kent Beck. Addison-Wesley, 2002. Test-driven development is a programming method that says: write a test, write some code, refactor, repeat. For me, the biggest hole in Extreme Programming Explained was the lack of explanation of this technique, Continue reading Review – Test-Driven Development (Beck)