Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

   >> Throw away tests that haven’t failed in a year.
That's absolutely f*ing crazy. Throwing those tests away makes it impossible for me to know that any changes I make to the implementation are OK.


Why? Don't you use assertions?


No amount of assertions in production code can replace assertions of unit-tests; assuming the unittests are designed to try all known common & edge cases.


Also, assertions only flag code that gets executed when you test it. Unless you can be sure that you have tested every possible execution possibility before shipping, you cannot know if after shipping your code will execute something that you missed during testing. This happens a lot.

Additionally, the unit tests allow me to safely maintain the code from the comfort of my own desk. If I relied only on assertions then I would literally have to send changes to all possible users and ask each of them to please test and tell me if they got any assertions. And do this for me three times a week for the next two years.


Who said only?




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: