Reading over the responses to this question http://stackoverflow.com/questions/64333/what-is-the-downside-to-test-driven-development I got the impression there is alot of misunderstanding on what TDD is and how it should be conducted. It may prove useful to address these issues here.
|
1
|
|
|
|
|
|
I feel the accepted answer was one of the weakest (http://stackoverflow.com/questions/64333/what-is-the-downside-to-test-driven-development#67184), and the most up-modded answer smells of someone who might be writing over specified tests.
TDD is an investment. I've found that once I was fully into TDD, the time I lost is very very little, and what time I did lose was more than made up when it came to maintence time.
If your test are becoming very complex, it might be time to review your design. TDD should lead you down the path smaller, less complex units of code working together
This is the worst point of them all! TDD should really be "Test Driven Design". TDD is about design, not testing. To fully realise the value of benefits of TDD, you have toy drive your design from your tests. So you should be redoing your production code to make your tests pass, not the other way round as this point suggests Now the currently most upmodded: http://stackoverflow.com/questions/64333/what-is-the-downside-to-test-driven-development#64381
Like the accepted answers first point, this seems like over specification in the tests and a general lack of understanding of the TDD process. When making changes, start from your test. Change the test for what the new code should do, and make the change. If that change breaks other tests, then your tests are doing what their supposed to do, failing. Unit Tests, for me, are designed to fail, hence why the RED stage is first, and should never be missed. |
||
|
|
|
|
I often hear people wonder if they need to test their tests. If your unit tests are so complicated that they need testing, then you're doing it wrong. They should be a few lines of brain-dead-simple code, with an expected result to compare to the return value of a method. I also hear a lot of confusion over Test-First vs. Test-Driven development. Don't quit using TDD just because some guru tells you that you have to write your tests first. This has benefits, but it isn't (imho) an essential component of TDD. It's okay to test a method after it's written. You still get most of the benefit of having written a unit test. |
||
|
|
|
|
IMHO The biggest misconception about TDD is that: time spent writing and refactoring tests would be time lost. The thinking goes like "yeah, a test suite is nice, but the feature would be complete much faster if we just coded it". When done properly, time spend writing and maintaining tests is saved multiple times over the life of the project in time not spent debugging and fixing regressions. Since the testing cost is up-front and the payoff is over time, it is easy to overlook. Other big misconceptions include ignoring the impact of TDD on the design process, and not realizing that "painful tests" is a serious code smell that needs fixing quickly. |
||
|
|
|
I see a lot of people misunderstanding what tests actually are usefull to TDD. People write big acceptance tests instead of small unit tests and then spend far too much time maintaining their tests and then conclude that TDD doesn't work. I think the BDD people have a point in avoiding the use of the word test entirely. The other extreme is that people stop doing acceptance testing and think that because they do unit testing their code is tested. This is again a misunderstanding of the function of a unit test. You still need acceptance tests of some sort. |
||
|
|
|
|
These are the issues that in my opinion are quite controversial and hence prone to misunderstanding:
|
||
|
|
|
|
The misconception that I often see is that TDD ensures good results. Often times tests are written off of flawed requirements, and therefore, the developers produce a product that does not do what the user is expecting. Key to TDD is, in my opinion, working with the users to define requirements while helping manage their expectations. |
||
|
