Unit tests obviously take time to write. At first, you will need time to do so. But soon enough you will discover that you will actually save time by writing unit tests.
Some of the reasons are:
- you will catch regressions instantly with a proper unit test suite;
- you will be able to test much faster since you don't have a deployment in the development cycle;
- you will be able to refactor fearlessly with a unit test suite around.
From another perspective, many programmers have a simple main execution with a System.out to test their code. The effort to change that into a unit test is small. The benefit is huge.
A not necessarily time-saving issue, but also an important one is that testing forces you to have a proper class design. You will find that classes with hidden dependencies ( e.g. singletons ) or too many collaborators are hard to test. It's just testing bringing out the code smells to the front.
