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

Unit testing did not work out for me on one project because the other developers started to act as if the test suite was the real application deserving of their attention and love. They spent most of their time on the tests, and the actual application slipped well past the deadlines. As a note of caution re: unit tests, when a customer is literally yelling at you because an application is not done, it is inadvisable for a junior developer to blurt out "but we've written 5 times as much test code as actual code". Whether you use unit tests or not, you have to admit that it can be a tough sell to the customer.

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.

link|improve this answer
27  
@Gortok: "unit test + app" should take less time than mere "app". There is no balance here. – J.F. Sebastian Nov 20 '08 at 8:43
22  
@J.F. Sebastian No, there most certainly is a balance. Like all good things, unit testing CAN be overdone. You eventually reach a point of diminishing and even negative returns, where you have too many tests that do little for app quality but require significant work to maintain. – Michael Borgwardt Jan 10 '09 at 14:54
8  
@brazzy: this is my whole issue with unit testing. TDD advocates tend to not acknowledge that automated tests represent an increase in the overall complexity of a project, which all else being equal is something to avoid. – MusiGenesis Jan 11 '09 at 0:27
14  
This doesn't seem like a failure of unit testing, this seems like a failure of management. Was there nobody tracking the progress vs. the schedule? Did management not know where time was being spent? Was there no ability to course correct? The tests seem like the proximate, not ultimate, cause here. – Jeffrey Fredrick Jan 22 '09 at 7:32
5  
@Jeffrey: agreed, but you highlight my main point. A programmer can say "I use unit testing" and still be completely incompetent. I can (and do) say "I rarely if ever use unit testing" and be perceived as incompetent. – MusiGenesis Jan 22 '09 at 13:48
show 12 more comments
feedback

Undisciplined developers who stubbornly refuse to change working habits can make this not work.

link|improve this answer
5  
In small teams of maybe 4 people, 2 people against testing effectively blocks it. Fortunately I've long since found new projects :) – krosenvold Nov 19 '08 at 17:06
6  
I would never dream of accusing a colleague of being undisciplined and stubborn ;) Most people only want to be shown HOW to be good at it. – krosenvold Nov 20 '08 at 15:58
show 2 more comments
feedback

It didn't work out for me on my project because I didn't use it. I didn't use it because I didn't understand it.

I picked up a book on it, and won't make the same mistake twice.

link|improve this answer
15  
Good job getting around the question. – MusiGenesis Nov 19 '08 at 15:11
51  
You wont' make the same mistake of not unit testing? Or you won't make the same mistake of picking up a book on it? – Bratch Nov 20 '08 at 1:42
1  
Just kidding. I won't make the mistake of building code without unit testing next time. – George Stocker Nov 20 '08 at 4:16
show 14 more comments
feedback

Missing separation of concerns. GUI intermingled with business logic code.

All on a project that was already started

link|improve this answer
show 5 more comments
feedback

Tightly coupled code made it impossible to test one unit without testing the entire system - which in turn depended on other systems.

link|improve this answer
7  
The book "Working Effectively with Legacy Code" can help. – TrueWill Jan 13 '10 at 3:44
show 2 more comments
feedback
  • Because my project was big and already started, and it was hard to build up the base of unit tests to make the effort really worthwhile.

  • Because the architecture of ASP.NET WebForms/[your platform] makes applications difficult to test.

  • Because not everyone on the team understood the testing strategy/knew how unit tests are supposed to work.

link|improve this answer
4  
"Because the architecture of ASP.NET Forms"... You can test all your Model and Controller... you just do not test your Visual... This reason is fake sorry. About 80% of your application should be as easy to test than other technology ;) – Daok Dec 8 '08 at 14:56
6  
True if you're using ASP.NET MVC, not so true with most usage patterns of ASP.NET Forms. – Dave Markle Dec 8 '08 at 15:57
show 2 more comments
feedback

We confused Unit tests and Functional tests. Half are functional, half are real unit tests. Thus, our unit tests take WAY too long to run (over an hour). This makes our tests much less effective.

link|improve this answer
1  
I've seen this fixed after the fact by adding a macro to have the slow, functional tests only built/run conditionally – jk. Dec 14 '09 at 12:49
feedback

Unit testing isn't a silver bullet.

Our product at work is a 40 kloc (Python) application with ~120 kloc of tests, and the full test suite (including functional tests that remote control the GUI) take hours to run (distributed on several integration machines).

We have some testing problems:

  1. They take too long to run - we often just run the unit tests to check in, which occasionally leads to broken integration builds and backing out commits.

  2. Some functional tests fail spuriously. Sometimes this is due to weird screenshot failures on Vista, sometimes tests are sensitive to timing differences. When we see these we add retries or try to make the interactions more deterministic, but chasing these false alarms can cost a bit.

  3. Some unit tests are written in a very 'mock-heavy' style - they know too much about the implementation, so that when it changes you have to change the tests too, which can be a real pain. It's tricky to find a balance between mocking out too much stuff on one hand and having tests that test too many layers on the other, but we're still learning.

However, they're definitely a net win. When we fix defects, we add tests to avoid regressions (as well as the tests we create as we build features), so changes to a complex application tend not to break other things.

That gives us a huge safety net, of the kind you couldn't get from compiler checks (well, the Haskell/OCaml people might say otherwise, but you certainly couldn't get it from a Java compiler).

We can make big changes and be confident that we haven't broken things. I find it hard to imagine working on a largish application without the security a large, well-maintained test suite gives. Well, working effectively on one.

It doesn't save you from bugs - we (or our users!) still find things we didn't anticipate that break. But it helps.

link|improve this answer
3  
So you have a bad test suite - one that is slow, brittle and too tightly coupled with the production code - not FIRST (agileinaflash.blogspot.com/2009/02/first.html). It's good to hear that even even though you have problems with it, you get value from it. An ugly test is better than no test (artima.com/weblogs/viewpost.jsp?thread=203994). As with anything, doing things well requires skill, and making a good test suite requires skill. – Esko Luontola May 5 '09 at 10:46
show 2 more comments
feedback

Ego, most team members felt their code is superior enough to not require Unit Tests, at the end of the day it's a cultural change.

link|improve this answer
10  
+1 "cultural change" in bold – Gishu Nov 19 '08 at 13:14
show 1 more comment
feedback

Unreasonable deadlines that barely allow enough time to write the production code. I have used unit testing successfully on previous projects and will continue to do so whenever there is enough time. I guess it's a matter of helping management and the customers to see the green bars at the end of the tunnel.

link|improve this answer
3  
I’m curious. I am a unit testing skeptic, but I though one of the selling points of unit testing was it made development easier (i.e less bugs, less re-writes, less re-design). If that is the case shouldn't that mean development is faster so you need less time to write the real code? – jussij Feb 2 '09 at 4:16
8  
With a reasonable amount of good unit tests, the total time to deliver a high-quality product is lower than without them. But it takes less time still to deliver a buggy, barely functional product if you cut corners and don't do any tests. – Michael Borgwardt May 5 '09 at 10:30
2  
@jussij - I think it depends on the developer. If the developer really "understands" the business requirements, unit tests are often a waste of time. Unit tests approximately triple your lines of code, which is a lot of overhead to overcome to make them more productive. Plus, they don't make much sense to business users, who really care about integration tests. – Jess Aug 8 '09 at 5:15
1  
Unit testing is an investment that pays off after time. When you've got test coverage you've got the safety net that will prevent you from stumbling and falling down later on during the development. It's easy to see the bugs that's found in production but much harder to count the ones caught by unit tests during development... – henrik Aug 14 '09 at 18:22
2  
I once had a discussion with a manager that stated that unit tests slowed us down. My proposal was to use method, variable, type names with just one or two letters to increase typing speed. He saw the light after that proposal. – Pedro Santos Oct 7 '10 at 11:17
show 2 more comments
feedback

Lots of unit tests were written, but they were not maintained vigorously enough.

All unit tests passed at the time when they were written and checked in.

The unit tests were run frequently, but when some of them started failing (often because the code changed without updating the corresponding unit test) we did not fix the unit tests quickly enough.

The situation was allowed to deteriorate and now we have so many unit tests failing that they have become almost meaningless.

Running a unit test suite before a check in to make sure I am not about to break anything is useless because lots of tests are failing with and without my changes, so it is impossible to see which failures were introduced by my changes.

link|improve this answer
1  
unit testing requires self-discipline. no self-discipline, no benefits – Steven A. Lowe Nov 19 '08 at 19:02
1  
"now we have so many unit tests failing" is sort of like doing html validation at w3c.org. After 300 errors you just give up and keep coding the same html3.2+ crap with 12 level nested tables and font tags wrapping a single nbsp. – Christopher Mahan Sep 24 '09 at 7:20
show 2 more comments
feedback

If you're adding unit tests to an old "working" system, you'll face these issues:

  1. To make the system testable, you'll have to change things that already "work". Some of your changes will break the system and if the team hasn't bought the testing concept, yet, they'll blame it on the "testing hype".

  2. Your tests will show existing issues in the system which were gleefully ignored in the past. Nobody likes it when you find bodies in their backyard and guess who will be blamed? The long standing member of the team (who wrote the bug) or the new guy?

  3. In all projects, time is scarce. It's by design: If there was spare time, your boss would find you something productive to do. If developers don't get the feeling that the tests help them to meet their goals (by reducing unnecessary bug hunting and by greatly improving self-confidence and code quality), they will quickly stop doing this "futile crap".

link|improve this answer
feedback

About 18 months ago, I tried to add unit tests to a large pre-existing project, using ruby's Test/Unit (it's basically exactly the same as JUnit and NUnit). I'd used NUnit quite a lot before, but had never seen much benefit out of it, and was pretty jaded about the whole unit test/TDD thing.

I ended up with a bunch of 'shallow' tests, which just checked that the software did what it was doing, not that it did what it was supposed to do, and were very tightly coupled to the code.

After about a month or 2, these became useless and unworkable, and I deleted them all. My checkin comment was "EPIC TEST FAIL" or something like that.

About 12 months ago, I built a large new section of a website, but this time, wrote the unit tests as I went along, and used rspec. It's worked out as great success, having caught many subtle and annoying bugs, and it hasn't gotten in the way of refactoring the code. I attribute this to 2 things

  • Writing tests at the same time as the code, not trying to shoehorn them on later
  • Learning to focus on specifying desired behaviour, rather than asserting what already happened. I will forever be in debt to rspec for having taught me this. Go rspec!
link|improve this answer
feedback

Started writing tests after the code was written and got frustrated because I felt like I was wasting my time. The solution was to switch to test-driven development where my unit tests drive my design. Now each test is progress instead of waste. I'll never go back to developing tests afterwards.

EDIT Now, even on projects that are fixes or upgrades, I still do TDD. I won't go back and put in tests for existing code, necessarily, but for new code or bug fixes I'll write at least enough tests to ensure that my changes don't break anything. Tests are written first to verify/protect the existing functionality, then to introduce new (fixed) behavior.

link|improve this answer
show 2 more comments
feedback

TDD has never made sense to me because:

  1. Who tests all this test code you write?
  2. Vast majority of defects are UI related and won't be found by unit tests
  3. Rest of errors are due to missing functionality that if you forgot to write you would also forget to test (eg: oops, no validation or oops sql injection)
  4. Every change now requires changing the real code and some test code - double work
  5. Impossible to unit test a complex system without leaving a certain amount of artifacts in the production code to support testing
  6. Provide a false sense of security to many people because they think the codebase can't be messed up because there are tests.
  7. I think TDD grew up with dynamic languages and is the replacement for not having compile time checking
  8. Ive never had a unit test catch anything but the most simplistic error that would have been caught anyways if the developer had bothered to even run the code.
link|improve this answer
7  
You can't write code to test the tests because if you wrote code to test the tests you'd have to write code to test the tests that test the tests. I'm going to delete this in a second, but that was fun to type. – MusiGenesis Nov 19 '08 at 14:11
7  
1. The test and its subject are tested simultaneously each time you run it 3. The act of writing tests helps identify missing functionality 4. The intent is that automating the tests is less work than the manual testing you would need to do instead. If this isn't true, then don't unit test. – slim Nov 26 '08 at 17:09
6  
6. Those people need to be educated. 7. Possibly so. I like having both though. 8. One reason you haven't had unit tests catch significant bugs might be that you don't buy the approach, and therefore haven't written many tests. – slim Nov 26 '08 at 17:13
11  
-1 most of this is flat out wrong (2) or betrays a total misunderstanding of what constitutes useful unit tests (4, the point is to test wanted functionality, not implementation details). – Michael Borgwardt May 5 '09 at 10:36
10  
-50 If I could. Seriously, how can this get upvoted? I mean, WTF, everything in there is so wrong. I could answer all points one by one but I feel like I'd be loosing my time. Happy manual testing! (Luckily, I'm not working with you, at least I hope so). – Pascal Thivent Nov 10 '09 at 7:59
show 15 more comments
feedback

Reluctant colleagues - and the lack of persuasive ability to talk them round.

link|improve this answer
1  
A manager needs to push it, otherwise it won't be maintained in the long term. – Jess Aug 8 '09 at 5:17
2  
I disagree, if the developers doesn't see the point of TDD the managers can push as hard as they can and it still won't happen. The same is true for the opposite, if they find it helpful they'll use it regardless of management. The bottom line is what counts and that bottom line always is working software with high quality. – henrik Aug 14 '09 at 22:51
feedback

A particularly annoying area of development that is really badly suited to unit testing is the growing trend for frameworks. Unless the framework - eg a MVC solution - comes with mocks, it is ludicrously difficult to unit test code developed to run on to of that framework. I generally just give up on unit testing in such circumstances.

link|improve this answer
1  
check out Rails... for how to "build in" testing into the framework. I'd say it's one of the best things out in the last 5 years. – Gishu Dec 4 '08 at 7:57
show 2 more comments
feedback

I've never used it. I've never felt I needed it, and it looks like far more of a PITA than just dealing with the problem it's supposed to solve. I refuse to take the time to learn and evaluate it in detail because of this instinct - I'm prioritizing things that I think will be useful.

Now, before you advocates explode, please feel free to explain to me why I'm wrong in the comments to this answer (as politely as you can manage, please - my position is not set in stone, and I'm just trying to be bluntly honest above). Give me a reason to love the object of your affections, and not an "and the advocates are all code-religious idiots" addition to my list :)

link|improve this answer
3  
Josephine, I shared your views. What swung me was actually seeing the result from my first TDD experience. I think you tend to make a lot better design decisions that way. That is what sold me. Now, in later being able to go back and modify that code safely since it is all tested is a huge bonus – Alex Nov 19 '08 at 13:43
3  
@Aaron: sound design and the compiler also give you this security. Less security, true, but at a lower cost than maintaining a test suite (which is really another application, hence greater complexity and development time). – MusiGenesis Nov 19 '08 at 13:59
5  
unit testing provides three things of benefit that IMHO outweigh the perceived 'overhead': 1. a safety net for changes, 2. a sense of TEAM confidence in the code base, 3. how-to documentation that cannot get out of date (without failing). – Steven A. Lowe Nov 19 '08 at 18:00
1  
and three more things: 4. a place for regression tests, 5. fodder for demos, 6. the ability to test the system fundamentals automatically, instead of manually. The latter saves many man-hours, which translates to money and productivity. This alone can often more than make up for the 'overhead'. – Steven A. Lowe Nov 19 '08 at 18:04
7  
I like unit tests, I hate TDD. I can't believe people advocate refactoring over and over. Smart designers can come up with a solid design for even complex problems before starting, and then choose to test as they go or at the tend. – Jess Aug 8 '09 at 5:20
show 13 more comments
feedback

I employed unit testing in a couple of projects I worked on (web applications, using business objects + stored procedures to perform CRUD operations on SQL databases).

Heavy use of SQL prevented us of creating really fine-grained tests. To properly test some database-interaction method you need data in the database (that is, if you're intending to automate tests). And data can only be added via another method... so you're testing both.

I ended up either writing not-so-grained tests that verified all inter-related methods - or living with the fact that a single error brought down multiple tests (for those of you thinking about mocking: part of the bugs found during unit test were in SQL, so mocking was excluded on purpose and I'm glad we did it).

link|improve this answer
3  
Mock out the database! link in a library that defines all the functions your database access code calls. Once you're able to control what happens when the code calls db_open or db_exec, you can do anything. – deft_code Nov 19 '08 at 19:41
4  
Mock out the database? "You can do anything" isn't a good thing. The tests should be ensuring the sql operations are valid. If they require data then static/dynamic fixtures are in order. If you're going to mock out the database in a SQL heavy app, you might as well just mock out your assert statements too. – Michael Oct 12 '10 at 5:43
1  
Mocking a database seems a ridiculous exercise to me, the place where things will most likely go wrong (data) is assumed to be stable with the mock – Tom DeMille Aug 18 '11 at 12:46
show 3 more comments
feedback

Unit testing has failed for me in the past (or rather, I failed at unit testing) because I have not thought far enough ahead and not tied down the design early enough. By the time the system was well enough specified for unit testing to be beneficial, it was already too much work for the nature of the project to implement it.

THINK AHEAD! - that was my mistake.

link|improve this answer
show 1 more comment
feedback

it is very hard to write unit testing for low level hardware development.
How do you unit tests your interrupt handler without writing full dma logic that will trigger that interrupt ? Actually we are doing unit testing just the units are quit big :)

link|improve this answer
2  
unit testing is not a religion it's a method of reduce debugging time. if to achieve this you need spend twice time that saved in the debugging ... do you math . – Ilya Nov 19 '08 at 16:39
1  
Actually, your answer sounds like it would make a great question for StackOverflow. – Tim Lesher Nov 19 '08 at 17:10
show 4 more comments
feedback

I didn't work out for me until I separated my project code into libraries. After that, it has been super-successful, because I've had time to maintain it. I currently have about 1100 tests that run in 4-6 seconds.

As it is now, if I add new functions to this library, I start by writing the tests -- because this allows me to decide how the functions should act, then I write the functions to suit these tests.

Also, for functions that e.g. converts a phone number to a valid MSISDN number, if I change it, I can run the tests and see if anything depends on the old behaviour -- see if they break existing dependencies and expecations of behaviour.

The only part that could be better is the database interface. It does all kinds of tests, but some it can't run (like sending voice and sms messages). If these were to work we need to set up a 100% up-to-date test system. But it would be possible.

Absolutely great for testing against code that has a long lifetime.

link|improve this answer
feedback

Unit testing did not work for me (a few years ago) because the code I wrote was not designed to be tested. Lesson learned: take the time to hone your code like a fine piece of woodwork.

link|improve this answer
feedback

Because some programmers on projects I've been on didn't understand Unit Testing or how implement it, and once shown, had the hand-slap-forehead moment. Also, the tool didn't really provide the greatest support. Not everyone can afford VSTS.

Also, I used to write console applications to test my code, until someone pointed out what I was doing, then I realized I'd been doing it all along.

For many, TDD comes across as backwards, until you show them the "hello world" of TDD with Unit Testing, light bulbs go on, red ropes part, and life is good.

link|improve this answer
show 1 more comment
feedback

Because the project didn't use unit testing from the start. Now it has grown so huge, that it becomes painful to write unit tests for the existing codebase.

Yes it works out for new stuffs (I've tried it and loved it), but the lack of enthusiasm of my seniors to enforce unit testing has made my effort becomes useless.

RWendi

link|improve this answer
show 1 more comment
feedback

In our case the development team was relatively new to the notion of refactoring as well. Hence, it was impossible to keep the tests clean and understandable. Instead of having duplicated code only in the application we had complex, duplicated and intertangled code in the tests as well.

If you don't keep your test code nice and DRY it may grow into a big ball of bad-smelling mud. This will probably only slow the project down instead of giving the team increased development velocity.

link|improve this answer
feedback

It didn't work for me in a project where we had shared code ownership (usually a good thing!) and I was the only one writing and executing unit tests.

I tried it in an existing project with highly coupled classes and not much cohesion. Unit testing only worked for me here in new pieces of code.

The first project I tried to do unit testing things went sour because I didn't use TDD. I added all unit tests later and lots of times didn't have time left to add the tests or had to rewrite lots of code to be able to test small portions of it. Unit testing cost more time here than it saved although the few tests we had did add to the quality of the project.

In short you have to have support from coworkers. You have to have a codebase that supports unit testing (or you can add it in by refactoring the old code-base piece by piece) and you have to do work test first at least when figuring out api's and design. It also helps to understand that unit-testing is more of a design activity than a testing activity.

link|improve this answer
feedback

I know you are looking for complete failures, but I have found that unit tests are not enough though they certainly help. I work in moderately large systems: 1 million lines of code, multiple services per server, around 100 servers per cluster. We have thousands of unit tests, but those cannot capture the interactions between all these components. So in addition, we have a few thousand integration tests that run the complete system against pre-defined scenarios. In addition, we run new versions of the system in parallel with production against carbon copies of the live data. And despite all that, we still have problems a few times each year.

In another really tiny project (2Kloc) I wrote 3 times as much test code as actual code. I even pushed the code coverage to 100% (at least according to gcov,) yet we still found a few bugs. That might be considered a success (if the defect ratio is acceptable to you,) or a failure (if you think that code coverage and unit testing is enough.)

link|improve this answer
7  
"Testing shows the presence, not the absence of bugs." --Edsger W. Dijkstra – gotgenes Jan 22 '09 at 4:38
show 1 more comment
feedback

One of the systems I work with is a COTS (Commercial Off The Shelf) package with an extensive DSL (Domain Specific Language) used for automation (think VBA, and you won't be far off).

The vendor provides no support for unit testing, and the language has no inheritance, no reflection and no variables with local scope. It does allow for file inclusion, but each program (at least it supports multiple programs) can only have one "start" method in it.

There are only really three ways to implement any kind of unit testing:

  • Build a simulator emulating the core software.
  • Manually construct scripts that test each important function, accessed through the file include mechanism, and build some way of reconciling results
  • Build a code generation tool using comment-based annotation processing to automatically create scripts to run any annotated test methods and reconcile results.

In all cases, once we created our framework to make testing possible, we'd then need to start creating tests - and figuring out a way to test anything, without trampling over live data or having dependencies on other tests, will be extremely, how shall we say, interesting.

All three methods require an enormous investment of effort, and we have so far been unable to justify making the large investment of time.

Besides, this system will get turned off 'real soon now'!

link|improve this answer
feedback

When I first tried it way back when, when NUnit was pretty new, it was difficult to handle testing of UI elements in ASP.NET and to mock up 3rd party tools or applicatios (Outlook, etc.) that the app needed to talk to. I suspect now with better mocking tools and UI testing that it would be easier, but at the same time, going through the effort of setting up such mocking frameworks does take some additional time.

I'm not saying that it's not worth it, the last project I was on where we used them, we had them all hooked up to CruiseControl.NET and it was awesome to see all the builds and tests run on each checkin....

link|improve this answer
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.