Testing Software: What is TDD?

added by JavaScript Kicks
1/14/2020 10:13:41 AM

733 Views

Test Driven Development is a software development process that follows these steps: Write a failing test for one requirement. Implement just enough code to make the test pass. Refactor with confidence (if it's needed). TDD is like the scientific method, but for software. The scientific method is how we learn things about the world.


0 comments