In the first instance you need to ensure the devs get training in how to effectively do test-driven development. After having mastered xUnit they should get training in how to employ mock objects. This is a more sophisticated kind of tdd (from 'development' to 'design', really), and one that appeals to aspiring developers, because by employing the technique they should produce better code, in addition to being able to better test interactions.
I mention the above advantages because it's one way I try to convince teams to adopt TDD.
However, the true answer to this question is to set up Continuous Integration, with the option to reject code that does not have accompanying unit tests :-)
Good luck