My friends and family are under attack in Ukraine. Donate to protect them directly or help international organizations.

10 Reasons to Write Unit Tests

May 31st, 2010

It's been bothering me for quite some time not being able to explain the people out there why they need to write unit tests. The most common responses that I got were "this is a waste of time" and "my application has no bugs". Unfortunately, this overconfidence and cutting corners is hurting the developers (and the industry).

I compiled this short list of why I write unit tests:

  1. Don't let your customers discover embarassing bugs. Write tests to cover a multitude of scenarios and catch these bugs before they get into production.
  2. Test complex scenarios quickly, without having to manually reproduce them in the application.
  3. By testing often, you don't break the application as you go. You can't always know the indirect implications of what you're writing, especially if you didn't write the original application.
  4. By testing early, you don't write unnecessary code but only the strict necessary. This makes the codebase smaller and more maintainable. It also saves on development time.
  5. You do not have to debug the same code twice. Once you have a test to account for a possible bug, you'll pick up any wrong turns quickly.
  6. You ensure readability. A unit test makes the purpose of your code easier to understand.
  7. You ensure maintainability. Unit-testing forces you to better encapsulate functionality, thus making it easier to maintain and add new features.
  8. Refactor without worries. Run the tests to make sure everything still functions as intended.
  9. Save time on testing. You can test the entire application at the speed of your CPU.
  10. Feel safer. How many times were you afraid to add a new feature or change something in your application's core? No more!
  11. Bonus: know exactly what is broken. Instead of hunting for an obscure bug, let the tests tell you what's wrong and why. Example: the application will tell you when you add an item to a cart but the cart still appears empty. It will also tell you what item you tried to add for the cart to break.

You may have different reasons, so share them in your comments.

Previous: Doctrine Translation in leftJoin() Next: Developer Community: Where to Start?