How to use TDD in a not very "Testy" environment
- by dbemerlin
I work in a company where OOP is... well, not fobidden, but at least frowned upon as "too complex". My coworkers write lots of 100+ lines functions and they are usually all in a "funcs.inc.php" or "something.inc.php", if they use any functions at all, often they don't since copy-paste is faster.
I would love to start using TDD at least for the code i write but as i have to interface with their code i can't see how to begin.
It's not legacy code as they are actively developing it and i don't want to modify their code as i don't want to provoke conflicts.
Which approach would you suggest, except for changing the company?