| | Jacob starts off by assuming one and two proven and so moves on a lengthy demonstration that the most important mentions of Unit Testing in Google have some discussion of Test Driven Development. I will grant Jacob points three and four. Although in part I would expect this to be true since Unit Testing and Test Driven Development come from the Smalltalk community which invented both concepts. We have Kent Beck to thank for writing the earliest frameworks and also the seminal book on Test Driven Development. So they get mentioned together because they were invented together.
The most important fallacy of Jacob???s writing is to assume that TDD is merely about forcing test case to written. TDD is about:
- Simplifying design
- Writing cleaner API???s
- Decoupling
- Reducing the number of bugs written right at the start.
- Thinking about how the caller will see and use your code.
In addition Jacob says that TDD is harder than ???Plain Old Unit Testing???. Perhaps, at first as the developer learns TDD, it will be harder but not over the length of a reasonable sized project.
I???ve been on projects where we tried to write all of our tests after the classes were written. Our test suite was valuable and prevented many regressions. But it allowed many issues to slip through. Weaker elements in API???s were often missed and were changed only at a later date at some expense. Tightly coupled code was allowed to evolve making some elements of the application very difficult to test without having to create dozens of other (often unnecessary) objects. As a result of all this it became more difficult to write test cases over time. Would TDD have solved all of these problems? Perhaps not but it would have forced us to confront many of them sooner.
Unlike Jacob I???ve encountered very few people who avoid TDD because they think it???s too hard. Instead the objections I???ve heard are:
- ???I don???t understand the benefits???
- ???I don???t believe all the claims I???ve heard???
- ???TDD won???t work for my project because we build XXX??? (Where XXX is your favorite specialized application type: GUI, Web Apps, ???)
My suggestion to anyone who tells me it won???t work: Find a mentor; Commit to trying for at least two months. At the end of that time if it still doesn???t work for you then so be it.
Have you been scared off from TDD by the amount of work you believe will be involved with trying to adopt it? Have you been scared off Unit Testing by TDD zealots (such as myself :-)) Have you encountered other reasons that people use for avoiding TDD?
If you enjoyed this post, subscribe now to get free updates.