What do I lose by adopting test driven design. I am not looking for the positives, only the negatives.
|
4
|
|
|
|
|
|
The person who taught my team agile development didn't believe in planning, you only wrote as much for the tiniest requirement. His motto was refactor, refactor, refactor. I came to understand that refactor meant 'not planning ahead'. |
|||
|
|
|
|
In the few years that I've been practicing Test Driven Development, I'd have to say the biggest downsides are: Selling it to management
Selling it to other developers
Maintaining the test code along with your production code
Writing tests so that you cover everything (100% code coverage)
However, with that I'd say that the benefits of TDD far outweigh the negatives for the simple idea that if you can achieve a good set of tests that cover your application but aren't so fragile that one change breaks them all, you will be able to keep adding new features on day 300 of your project as you did on day 1. This doesn't happen with all those who try TDD thinking it's a magic bullet to all their bug-ridden code, and so they think it can't work, period. Personally I have found that with TDD, I write simpler code, I spend less time debating if a particular code solution will work or not, and that I have no fear to change any line of code that doesn't meet the criteria set forth by the team. TDD is a tough discipline to master, and I've been at it for a few years, and I still learn new testing techniques all the time. It is a huge time investment up front, but, over the long term, your sustainability will be much greater than if you had no automated unit tests. Now, if only my bosses could figure this out. |
|||
|
|
|
|
Good answers all. I would add a few ways to avoid the dark side of TDD:
|
|||
|
|
|
|
You lose the ability to say you are "done" before testing all your code. You lose the capability to write hundreds or thousands of lines of code before running it. You lose the opportunity to learn through debugging. You lose the flexibility to ship code that you aren't sure of. You lose the freedom to tightly couple your modules. You lose option to skip writing low level design documentation. You lose the stability that comes with code that everyone is afraid to change. You lose the title of "hacker". |
|||
