DEV Community

Discussion on: The guilt of not testing everything

Collapse
 
asynccrazy profile image
Sumant H Natkar

I like unit testing my code because it helps me finding null object reference exceptions or some particular case which I have forgotten to include in my code.

But expecting more than that is too much for me.

Also tests are especially helpful when you change something, they give immediate feedback if you have broken something which was working.