vote up 0 vote down star

Possible Duplicate:
How to encourage implementation of TDD?

My boss knows about TDD but won’t allow us to use it because he thinks that it is just a passing hype that everyone talks about but no serious.

How could I convince him to follow TDD?

flag

@Bill: Sorry.., – LazyBoy May 28 at 14:01
@LazyBoy: Not a problem. I only knew of the other question because I'd answered it. :) – Bill the Lizard May 28 at 14:02

closed as exact duplicate by Bill the Lizard May 28 at 13:59

6 Answers

vote up 2 vote down check

Don't convince him. Just start doing TDD and next time he praises the good job you did on the project tell him it's all thanks to TDD.

link|flag
Was the same I was typing before it closed – Robert Gould May 28 at 14:07
vote up 2 vote down

What benefits did you tell him TDD has? If you can demonstrate that it will get projects done faster, cheaper, and with less maintenance required, I'm sure he'll listen.

link|flag
vote up 1 vote down

Use it for a few weeks and show him the increases in productivity you've made during then, in some measurable way.

link|flag
vote up 2 vote down

Your boss doesn't write code, he doesn't have to follow TDD.

Just write tests, be productive and when your coworkers are scratching their heads asking how you keep hitting it out of the park, tell them to write the tests for the code their writing before they write the code.

link|flag
vote up 0 vote down

Here is a similar question:

Convince to use TDD

link|flag
vote up 0 vote down

Have you considered that he could be right?

I've seen plenty of useful cases for TDD; interfaces are a great example, since a proper set of tests is a contract between the two sides and these tests can also be used as an adjunct to formal requirements, but it is often useless at a low level. Unit tests that provide full coverage are often a waste! For Acceptance tests or System/Integration tests TDD can be useful.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.