show/hide this revision's text 2 expanded info

Maybe it isn't that TDD is a problem, but have you considered whether it is really appropriate for the environment you're working in, and the type of project you're working on? You haven't mentioned anything about what problems you currently have (or even what methodologies and practices you currently use) and why you thing adopting TDD would solve these problems. Are you sure the resistance you're seeing is not as a result of a resistance to change, but because you're trying to solve a problem that doesn't exist?

TDD isn't appropriate in all environments. It sure as heck isn't appropriate where I work because we work too fast, with specs that typically are written roughly to start and refined/changed/rewritten throughout each iteration, so we don't have any defined behaviours to test against most of the time. In addition, we have developed practices that means code simply doesn't need testing in many cases because the method is a one-liner that static type checking ensures must work.

There are many comments in your post that mark you out as somebody who may be relatively inexperienced, and who has latched onto a methodology which you believe is a silver bullet that can solve all problems, and which your colleagues must learn if they are to keep up with you. Unfortunately there is no silver bullet in software development, and if they are senior developers with a lot of experience, and they don't believe that TDD is appropriate then maybe, just maybe, it's worth listening to them.

You should also be aware that TDD is not a pre-requisite to refactoring, as much as people who love the "red green refactor" mantra wish to think it is. If you're refactoring a small area and you know what it affects, and it can be easily manually tested, then you can manually test that area during and after refactoring.

show/hide this revision's text 1

Maybe it isn't that TDD is a problem, but have you considered whether it is really appropriate for the environment you're working in, and the type of project you're working on? It sure as heck isn't where I work because we work too fast, with specs that typically are written roughly to start and refined/changed/rewritten throughout each iteration, so we don't have any defined behaviours to test against most of the time. In addition, we have developed practices that means code simply doesn't need testing in many cases because the method is a one-liner that static type checking ensures must work.

There are many comments in your post that mark you out as somebody who may be relatively inexperienced, and who has latched onto a methodology which you believe is a silver bullet that can solve all problems, and which your colleagues must learn if they are to keep up with you. Unfortunately there is no silver bullet in software development, and if they are senior developers with a lot of experience, and they don't believe that TDD is appropriate then maybe, just maybe, it's worth listening to them.

You should also be aware that TDD is not a pre-requisite to refactoring, as much as people who love the "red green refactor" mantra wish to think it is. If you're refactoring a small area and you know what it affects, and it can be easily manually tested, then you can manually test that area during and after refactoring.