vote up 76 vote down star
43

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

flag
show 18 more comments

58 Answers

1 2 next
vote up 0 vote down

I can't say that there's ever been a time that unit testing did not work out for a project. There have been times (currently ongoing!) that portions of code will not be unit tested because the authors of the code did not care and made things hard to test. But in cases like this I just find a way around it and I cover my own code.

This always works for me. At release time I go home on time knowing my code works and the developers with the flaky code are fiddling around with something here and there until 10pm trying to fix things they didn't know were broken but QA noticed.

link|flag
vote up 0 vote down

In my opinion, it is very sensitive on personalities + skills of programmers. You should check quality of tests and check what your team really does.

E.g. I have seen this kind of tests for whole project in team pretending development with SCRUM & TDD:

  • Tests did not have any assertions (only logs).
  • Nearly every test method contained try-catch block preventing their automatic failure in case of exception
  • Test data were presented only on development machine of concrete developer
  • Tests were not executed on regular basis
  • Etc...

This is not failure of TDD, but I wanted to present how "unit tests" could be just next way how to throw money from window.

link|flag
vote up 0 vote down

It's helped on all the projects I've used it on, but the "challenges" have been:

  • only some developers on the team wrote tests
  • tests are too brittle, and so they get commented out
  • developers don't fix tests when they break because no one makes them
  • tests take a long time so developers can't use them as actively
link|flag
vote up 0 vote down

I'm in the "it didn't work for me because we didn't use it" (all of our apps our intranet web apps - ASP.net) camp. I also don't know nearly enough about it. Enough to know I want it.

I've been learning MVC and I can appreciate that part of the sell is test coverage. I pushed a little for our next project to use MVC but didn't get much in the way of positive feedback. I'm hoping to make Unit Testing a bigger focus once I'm more comfortable with MVC.

link|flag
vote up 0 vote down

My guess is that unit testing often didn't work because it wasn't introduced at the beginning of a project.

  • With unit tests, it's very important to refactor your code so that it is easy to test. For example, a single class that has database access, business logic, and some display logic in it is going to be very difficult to unit test. This is easy to do when the code isn't writen yet. It's much less trivial when there's a huge chunk of existing code, and tests are being added after the fact.

  • Refactoring code without good unit test coverage is very difficult.

  • Unit tests are not only level of testing required to ensure confidence in the quality of your application. They are only the lowest level of testing; their primary value is to empower refactoring.

This is why adding unit tests to an existing body of code is often a very risky activity. If the code isn't written in a test friendly manner, refactoring it into a test friendly form is very difficult, because there are no unit tests. This chicken and egg problem can make progress very slow.

Solution: the first step is not to add unit tests.

My suggestion is that before adding unit tests to a legacy project, you should create a good functional test suite. This is easier to do, since functional tests are black-box in nature; test-friendliness of the production code is less of an issue.

Once you have good functional test coverage, you can tease separate concerns apart into domain layers (possibly rewriting a component here or there), while being confident that the application didn't break as a result of your changes. As you go, you write unit tests at the seams where you split components (or for rewritten components, TDD the whole thing).

Once this process is complete you will be left with a structure that is much easier to add unit tests to.

Characteristics of a good functional test:

Good functional tests are:

  • Black box. They don't require internal knowledge of how the app works. For example, rather than checking a database to verify that some data was recorded, consider checking another screen of the application.

  • Process oriented, in a narrative form. A good functional test doesn't look much like a good unit test. Rather than testing a specific class, you test a process. They have a longer, narrative form, with multiple steps. It's almost like explicitly testing a use case.

  • Non-functional. Good unit tests have a lot of the characteristics of functional programming. They don't have side-effects, they can be executed in any order, etc. The same is not true for functional tests. It's perfectly ok to require the steps inside of a functional test to execute in a specific order. You'll probably want a way to clean up after the entire suite is run, but individual functional tests can leave a little bit of mess behind.

  • Less specific failures. A good unit test will fail for only one reason, and one bug should cause exactly one test to fail. Failing functional tests may happen for several reasons, and one bug can cause many tests to fail; an app that can't connect to a database may fail every test.

  • Different life-cycle. You don't run functional tests TDD style as you develop. You do run your functional test suite once as you finish a feature, to demonstrate that it is finished. You also don't run them on your workstation, to avoid "works on my machine" syndrome. (Although you can run them on your workstation first to predict that they'll work in the test environment)

link|flag
vote up 0 vote down

I've been on a number of projects that employed unit testing. To a number of these projects, it added tremendous value. To others, it added little appreciable value. In no case, however, would I say the fault was with the concept of unit testing, however.

The cases in which an attempt at adding unit tests was either unsuccessful (meaning they didn't end up being written) or that they added little appreciable value were due to two primary factors: * The tests were either written after all the code had been written, or we were trying to write tests for new code, but that was based legacy code which had been originally developed without unit tests. Such code almost invariabily is written in a fashion that maes writing unit tests extremely difficult. Typically it has a lot of stuff going on with components that all heavily depend on eachother and don't expose the things necessary to write tests. Overcoming this is a huge, huge undertaking and not something that was easily supported given the time and cost constraints of these projects
* Developers did not understand proper unit testing. Often, they would write "unit tests" that either did nothing more than execute a swath of code without ANY asserts. Even after trying to help teach these people proper unit testing, I'd still some unit tests that had very little real value.

In every project in which meaningful unit tests were written from the beginning, helping define and inform the code base, they added tremendous value. I've also had limited success on adding them to existing apps that previously lacked them, but this involved a great buy in from managment for the extra time required to refactor the code to accomodate them. In these cases, we didn't try to test the old code, only to refactor as little as possible so that the new code could have tests written for it. There is an important distinction there.

link|flag
vote up 0 vote down

The main reasons why Unit testing hasn't worked for me on the projects I have been on.

  • Management has not bought into unit testing. They would rather developers spend time on writing the application than writing tests.
  • Developers are not educated on writing unit test and what it takes to write a good unit test so that it can be run repeatedly without having to maintain it every time you run your test suite.
  • Unit test build not being run nightly or rather not integrate continuous build on the project.
  • When unit tests broke no one took the time to fix them.

These are all of my reason. I am a big believe in unit testing and I personally will not write a piece of application code without a unit test. There is a fine art to writing test so that they don't take up most of your development time.

link|flag
vote up 0 vote down

When I started out, I bumped into isolation problems when using database access and WCF. I didn't know about mocking frameworks (like Rhino or Typemock) back then, so I didn't use one, instead I did manual mocks. This prooved time consuming and complicated so I started using mocking frameworks.

link|flag
vote up 0 vote down

Having to deal with bloated application servers and other "Enterprise" software with its claws in everything that makes it hard to write independent tests.

link|flag
vote up 0 vote down

When working with a team the most difficult part with TDD is to get your other team mates to do TDD. Making a "cowboy coder" believe in TDD is daunting daunting task. They push back on TDD just because they are down right lazy & they just don't believe in writing loosely coupled code. TDD for the project crashed and burned because of the existence of lazy cowboy coders..!!

link|flag
vote up 0 vote down
  • Lazy: it's very hard and time-killing to update all test in a big and recently changed project

  • Junior developers: no experience with separation of concerns, modularity, mocking, interfaces

  • GUI: never found an usable solution for this layer

  • Legacy code

link|flag
vote up 0 vote down

Unit testing, which I was in favour of because it was an automated form of the regression testing I'd been using for years, failed on one significant project because nobody could tell me how to do it for an embedded, soft real-time environment. I was developing stereoscopic imaging for QuickTime and had no idea how to use unit testing or how to fake the environment.

With lots more experience, particularly working for a CTO who had a strong background in unit testing image processing applications, I would now at least write unit tests for the core algorithms by refactoring the code to be able to invoke them in isolation.

The creative step, it embarrasses me to say, that I didn't think to take was having image files saved of acceptable results and comparing with them.

It would still have required a lot of infrastructure being written, to populate data structures in the manner being filled by QuickTime and so I'm still not 100% convinced unit testing would have been suited to that project.

In summary - if you're embedded in a complex environment with rich data, mocking may be too hard.

link|flag
vote up 0 vote down

I have had 3 major shifts in the goal posts for the project. The original scope is very fluid due to customer business model changing.

Unit tests written and re written during the first two changes were dropped in the third iteration due to time constraints and code base being largely rewritten.

I will seriously re-consider using unit tests in my next project without a VERY FIRM specification

link|flag
vote up 0 vote down

I wrote a few tests for my C++ code recently, which were just short int main() functions that called some of my functions and checked the results with assert(). I compile these tests using a Makefile and call them on make test.

Would you call that unit test, too? Should I switch to one of the test frameworks? What would the advantages be for me?

link|flag
1  
Yes I would call that unit testing and a framework would make it easier to collate results but some people advise rolling your own as you have done. If you have lots of command-line stuff, consider wrapping in Python unit tests (trivial to write) rather than a C++ framework. – Andy Dent Feb 2 at 5:30
vote up 0 vote down

It does not work because:

  1. How do you unit test GUI? Stuff like GUI responsiveness is hard to unit test.
  2. Incomplete unit tests, some scenarios are missed and are not tested. Although this is usually programmer oversight, not the problem with unit test practice itself.
link|flag
vote up 1 vote down
  • Team members didn't understand the purpose of unit tests, how to write them, or how to use the tools.
  • Tests are written against concrete classes instead of mocked classes.
  • Tests are written to ensure that code calling a web service works. When the web service breaks or isn't fully functional, the test breaks.
  • Tests do unhappy things like pull every single user out of LDAP.
  • Tests take too long to run and half of them fail, so we rarely run them.
  • UI code is difficult to unit test.
  • People fall into old ways of testing, such as testing the UI manually or creating their own command-line based test client.
  • I have no way of enforcing that unit tests be written.
  • Artificial deadlines leave us no time to write unit tests.
link|flag
vote up 0 vote down

I think unit testing can fail when people treat it as a first class citizen, which is (seemingly to me) opposite the thinking of many TDD folk.

By this I mean, that unit tests over time have their own maintenance costs, and bring people to fear re-factoring things because they would also have to refactor tests. Being able to intelligently refactor code with the least effort possible is to me of the highest importance.

If a unit test is starting to get in the way of needed changes to the real code, or taking up too much time maintaining at the expense of project development, get rid of it. You can bring something like it back later which will probably be better thought out anyway.

This is especially the case in the transition from a project undergoing heavy development, to maintenance - this is exactly when many tests start to become more a burden than a boon. In these cases you can think of the unit tests you have built as scaffolding around a building under construction, to be discarded as better ways of working on the building are brought in and day to day challenges appear that demand new tests.

link|flag
show 2 more comments
vote up 1 vote down

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|flag
show 1 more comment
vote up 0 vote down

I love unit-testing. It has saved me a lot of trouble.

But there are some situation where it doesn't apply, and in my case was when I wrote a relatively complex driver.

For simpler driver, I could create a mock object, which simulate the device's response.

But there are some devices, eg. Network Processor (NP), where it doesn't work well.

Of course we can simulate the NP, but the higher the layer you simulate it, the less effective the unit-test will be.

Some NP has a pretty good simulation, but I would call it an integration test, rather than unit-test, since there are so many layer of abstraction before I could test a specific object.

link|flag
vote up 1 vote down

So far, Unit Testing did not work out for my Projects on Microsoft Sharepoint. The issue is that essentially I am doing integration testing (I have no experience with mocking Frameworks, and mocking SPWeb and all it's dependencies looks like a behemoth).

If you want a nice little bullet point:

  • too many additional dependencies

I still want to do proper Testing, be it Unit or Integration testing, but I really have to schedule some time for this.

link|flag
vote up 0 vote down

Because the developers did not understand requirements and specification of the business logic well enough to design correct test cases. It was especially hard for the developers to determine corner cases such as expected behaviors that make sense in business around the boundary condition. So most efforts have been spent on passing the specified threshold of the coverage.

link|flag
vote up 0 vote down

when I'm programming some algorithmic or mathematic stuff which is hard enough to design. I create my test first which force me to think "what I want to do" ? Then I create my solution, so I'm sure my job is done when my test pass. I no longer need to create a console application, or step in my code through debugger(or juste a little).

Unless my code is published (ie is a framework for public use), if the problem is trivial, I do not make unit test (if you are a good developper your code must be always trivial).

Sometimes, I do some test on my interfaces, so classes which inherit my interface have automatically some test to see if it's well implemented. (for example, if you implement IList on your class, make sure that any not null Add, increase Count by 1)

But I think unit testing are a really good documentation (I've learn many thing in the Unity framework by looking their test suite).

I see unit testing like an extension of compiler errors.

link|flag
show 1 more comment
vote up 1 vote down

On the one hand, the project succeeded - there were almost no code related failures. On the other hand, the build took almost four hours to run and there were thousands of tests, Selenium and JWebUnit based, which were incredibly difficult to fix when they broke. Why? Because clever and talented developers had seen redundancy and replication, and had built clever abstraction layers over the top of the tests, which had the unnoticed effect (until years later) of completely enshrining framework and data dependencies. We eventually tried to move to SeleniumGrid and it was almost impossible to parallelize the tests, as the interdepencies went so deep. (We 'fixed' the problem by buying a much more powerful build server. Let's hope Moore's law keeps up with our test proliferation).

So I will try again on the next project. But next to DRY and YAGNI and all those good old commandments, I'm putting up TORT:

Test Oughta Repeat Themselves.

Oh, and before anyone jumps in and says 'Selenium is FUNCTIONAL, not unit testing', we found that once the testing bug had spread we were testing UI from a browser with completely mocked out Controllers. Caught a lot of navigational and AJAX problems that way.

link|flag
show 1 more comment
vote up 0 vote down

The most common reason it doesn't work is because the unit testing code is treated as a third class citizen.

That is the code is absolutely not written to be maintainable which quickly becomes a ball and chain. As more and more unit tests are added, older ones become obsolete and aren't fixed. Which means you end up with a mess of test code that's virtually useless and doesn't really test anything. But there's lots of it!

The key to success is to treat your unit testing code with the same respect as your production. Not any more, not any less, just the same.

As well, always decouple the testing code from the production code. As soon as you start adding testing code in your production code (rather than in your testing code), then you're asking for trouble...

link|flag
show 2 more comments
vote up 2 vote down

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|flag
vote up 2 vote down

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|flag
vote up 1 vote down

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|flag
show 1 more comment
vote up 11 vote down

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|flag
vote up 0 vote down

I think the two biggest reasons for the absolute failure of our unit test environment on my team were:

1) No permission to add the unit tests as a post-build step for each library, ergo nobody ever ran them after the initial implementation, ergo they no longer compiled after a few months.

2) People mistaking the unit tests for test apps with all kinds of database connections, file streaming, etc., leading to extremely long running times that encouraged everyone to exclude everyone else's tests except their own from the executables.

link|flag
vote up 1 vote down

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|flag
show 1 more comment
1 2 next

Your Answer

Get an OpenID
or

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