Slide 2
Slide 2 text
What is TDD?
• Getting into the habit of writing tests before
writing code.
• TDD are continuous short cycle of test, code,
refactor.
• Test cases are in separate files. No more print_r &
var_dump in your code!
• The tests contain assertions that are either true or
false. Passing the tests confirms correct behavior
of the code.
2