DEV Community

Discussion on: I use test-driven development every day, ask me anything

Collapse
 
rtoken profile image
Ryan Token
  1. Besides fewer bugs, what do you consider the biggest advantage of TDD?

  2. Opposite question: aside from the potential slowdown of writing tests, what do you consider the biggest drawback of TDD?

Collapse
 
ssolo112 profile image
Steven Solomon

Hey Ryan,

  1. I wouldn't try to make the case that there are fewer bugs when using TDD. However, I would say that there are fewer regressions. It is possible to write tests first, and not think about all of the edge cases that could exist when the system is running.

  2. I agree that there is definitely a slow down when learning TDD. It really took me years to start doing it well. When I was just starting out it was easy to create tests that were very coupled to the implementation—rather than the behavior—of a piece of code. I would say that the learning curve is a huge drawback. I'm not sure what I would say it is the biggest, I might have to revisit your question after thinking about it for a bit. After doing it for years I feel that it is actually slower for me to work in a non-TDD way.

Thank you for the questions!