up vote 186 down vote favorite
99
share [g+] share [fb]

Give short concrete answer: why unit testing did NOT work out for you (your project). Will you particularly try again on a different project?

link|improve this question
4  
Could you rephrase the question to be "what will you do differently?" Otherwise, it's just "why I hate unit testing". Which is (a) not a question and (b) not helpful. – S.Lott Nov 19 '08 at 12:13
9  
@S.Lott, you are being ridiculously pedantic. "badbadboy" has made considerable effort to rewrite his question already. – David Arno Nov 19 '08 at 12:15
1  
S.Lott - that would be a different question. "What I would do differently" does not make sense for me, that's in every book. It is not the same as "why i hate unit testing". It is "why it didn't work". Nothing personal. No opinions needed. But experience-based. – badbadboy Nov 19 '08 at 13:11
1  
Part of me thinks it should be a wiki since it's a subjective item. There are other subjective items that aren't wikis, and some that are. This is one of those areas I really wish we'd hash out in sofaq so we have a clear cut understanding of when to wiki something. – George Stocker Nov 19 '08 at 13:19
1  
Obviously, part of me doesn't think it should be a wiki, for the same reason I don't think this question should be a wiki: stackoverflow.com/questions/299596/… - It's asking for fact based assessments of a best practice (or lack thereof). – George Stocker Nov 19 '08 at 13:20
show 15 more comments
feedback

65 Answers

1 2 3

Because we didn't test everything that seemed a bit too hard to test, and everything that wasn't our work ... which in the end led to something like 15% of really unit tested code...

"a bit too hard" here means code that you can't test input and output right away, because it's creating a bunch of objects behind, or accessing network resources, using timers, etc, etc

I believe the code wasn't modular enough, not really adapted to unit testing

link|improve this answer
show 1 more comment
feedback

Unit testing has failed every time i try to start it because

  • i can't find a book, blog, or article that explains how to apply it to my situations
  • it requires complexifying up the code base
link|improve this answer
feedback

"Also, the unit testing in this case was largely a failure because the tests were mostly aimed at aspects of the application that were never going to change, and ignored the weakest points. In this case, the weak points were the availability of network resources and the state of the data in the production environment. All of this was mocked in the test suite, and essentially useless. This incredibly heavily unit-tested application failed miserably in the field."

Was tesing of network resources really a unit test? Maybe an integration test? Maybe a system test? You do have those, don't you?

I am not saying that load & stress test should not never be at unit test level, but generally not.

This (as you describe it) was not a failure of uint test, but a failure of your overall test startegy.

link|improve this answer
feedback

It wasn't my project, but even after extensive testing the system unexpectedly failed 4 years into release because threads were used. Search for "Ptolemy" here.

link|improve this answer
feedback

Every programmer has to ask themseleves the question: is there any bug that could be caught by unit testing that couldn't be caught just as easily by simply using the bloody software?!

Every hour you spend writing tests is an hour you could have spent fixing bugs.

link|improve this answer
show 5 more comments
feedback
1 2 3

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.