No post body was provided.
Ask HN: Do you unit test?
1–3 of 3 posts
Re: Ask HN: Do you unit test?
#2No most of the times especially if I have a UI. I am very lazy first of all like majority of programmers.
Secondly I hate writing code for tests for web applications when we can directly test it from the UI. Third maintaining tests is a nightmare and will eat up more time than developing .
Re: Ask HN: Do you unit test?
#3yes. it is good. although not religiously...
often its a great strategy for fixing a bug and making sure it never rears its ugly head again... sometimes making the test is too difficult - to the point where test driven development is ruled out, even from the beginning (e.g. real-time interactive game type things) :)