Lots of people talk about writing tests for their code before they start writing their code. This practice is generally known as Test Driven Development or TDD for short. What benefits do I gain from writing software this way? How do I get started with this practice?
Share
There are a lot of benefits:
The best way to start is to just start. There is a great book by Kent Beck all about Test Driven Development. Just start with new code, don’t worry about old code… whenever you feel you need to refactor some code, write a test for the existing functionality, then refactor it and make sure the tests stay green. Also, read this great article.