
Should you aim for 100% code coverage on Test Driven Development (TDD) projects?
My view is that for TDD projects, only the business logic layer should be under TDD, not every line of code in every layer. This way it gives you maximum benefit developing the core unique thing you are developing, and lets the common and garden plumbing in other layers be produced without 5 lines of test code for each line of application code produced.
Controversial? Many projects blindly use tools like NCrunch and aim for every line of code to be covered by a test somewhere.
I personally don’t think this is necessary and adds a lot of overhead to a project where if you are following SOLID or similar rules your MVC views will only contain formatting and your data access layer will contain lots of small very simple functions. So what if you miss a where clause off a select? It will be really obvious really quickly especially if the repository method is used in more than one place, and fixing it once will fix it everywhere. I think a balanced approach is much more productive, although like a lot of my views, these are strong views, weakly held – that is, the client can easily convince me that if they want to do it differently they can, because they are the client after all.
Leave a Reply