Do you have the time to write Unit tests? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T06:10:02Z http://stackoverflow.com/feeds/question/962887 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/962887/do-you-have-the-time-to-write-unit-tests 6 Do you have the time to write Unit tests? bitbonk 2009-06-07T21:38:52Z 2009-06-08T08:10:27Z <p>In your daily work, do you really have the time to write unit tests? In a lot of cases when implementing a new feature it seems that things work fairly well and we could now hand it off to the testers. Writing and maintaining unit tests often seems to take too much time.</p> http://stackoverflow.com/questions/962887/do-you-have-the-time-to-write-unit-tests/962889#962889 20 Answer by Robert Munteanu for Do you have the time to write Unit tests? Robert Munteanu 2009-06-07T21:41:34Z 2009-06-07T21:57:36Z <p>Unit tests obviously take time to write. At first, you will need time to do so. But soon enough you will discover that you will actually save time by writing unit tests.</p> <p>Some of the reasons are:</p> <ul> <li>you will catch regressions instantly with a proper unit test suite;</li> <li>you will be able to test much faster since you don't have a deployment in the development cycle;</li> <li>you will be able to refactor fearlessly with a unit test suite around.</li> </ul> <p><hr /></p> <p>From another perspective, many programmers have a simple <code>main</code> execution with a <code>System.out</code> to test their code. The effort to change that into a unit test is small. The benefit is huge.</p> <p><hr /></p> <p>A not necessarily time-saving issue, but also an important one is that testing forces you to have a proper class design. You will find that classes with hidden dependencies ( e.g. singletons ) or too many collaborators are hard to test. It's just testing bringing out the code smells to the front.</p> http://stackoverflow.com/questions/962887/do-you-have-the-time-to-write-unit-tests/962891#962891 1 Answer by Daniel A. White for Do you have the time to write Unit tests? Daniel A. White 2009-06-07T21:42:00Z 2009-06-07T21:42:00Z <p>Although I am just learning, I feel that people make the time to write unit tests as part of their daily programming.</p> http://stackoverflow.com/questions/962887/do-you-have-the-time-to-write-unit-tests/962892#962892 7 Answer by bm212 for Do you have the time to write Unit tests? bm212 2009-06-07T21:42:02Z 2009-06-08T08:10:27Z <p>You'll find eventually that you don't have the time NOT to write unit tests! Fixing bugs is way easier at the early stages of development than when your code is in production. There are many many blogs that go into this far more eloquently than I can, try Misko Hevery's for a good starting place (<a href="http://misko.hevery.com" rel="nofollow">http://misko.hevery.com</a>). This is a good overview about testing philosophy: <a href="http://blog.jayfields.com/2009/02/thoughts-on-developer-testing.html" rel="nofollow">http://blog.jayfields.com/2009/02/thoughts-on-developer-testing.html</a></p> http://stackoverflow.com/questions/962887/do-you-have-the-time-to-write-unit-tests/962893#962893 2 Answer by Steve for Do you have the time to write Unit tests? Steve 2009-06-07T21:42:07Z 2009-06-07T22:36:24Z <p>Nope, I barely have enough time to write the features requested, and I'm enormously efficient and fast compared to your average programmer. There would be no way for me to hit my deadlines and write unit tests.</p> <p>EDIT: I should make the point that I maintain a very healthy work life balance of ~ 40 hours of work/week. If I worked 60, I would write unit tests.</p> <p>EDIT 2: No sarcasm on my part, I could miss my deadline, or I could write unit tests. Hitting the deadline is much easier from my perspective. Otherwise I would have to explain why I'm three months off target for a year long project. Its not like unit testing was included when project time was allocated.</p> <p>EDIT 3: Not that I don't want to write unit tests. I just don't see how to do it and maintain the same productivity in lines of code that actually perform a real world task. Short of adding an extra day and a half to my work week that is.</p> http://stackoverflow.com/questions/962887/do-you-have-the-time-to-write-unit-tests/962896#962896 14 Answer by Ian Nelson for Do you have the time to write Unit tests? Ian Nelson 2009-06-07T21:42:31Z 2009-06-07T21:42:31Z <p>Do you have the time <strong>not</strong> to write unit tests?</p> <p>Maintaining and debugging code which is not covered by unit tests often seems to take too much time.</p> http://stackoverflow.com/questions/962887/do-you-have-the-time-to-write-unit-tests/962898#962898 2 Answer by jrcs3 for Do you have the time to write Unit tests? jrcs3 2009-06-07T21:42:48Z 2009-06-07T22:00:47Z <p>Do you have time not to write unit tests? When things go bad, do you know WHERE they went bad? Can you refactor code and know that things will continue to work.</p> <p>When you maintain tests you get a better picture of what has changed in the system. You can always throw out tests that are no longer useful (if you can't perhaps purity is becoming an issue).</p> <p>I come from a background where they don't believe in unit testing and I've seen how bad things can get when we don't get the feedback you get from testing. Yes, it costs to write tests, but it costs not to test. The important thing is to find a balance; the balance is not 0.</p> http://stackoverflow.com/questions/962887/do-you-have-the-time-to-write-unit-tests/962899#962899 3 Answer by no_one for Do you have the time to write Unit tests? no_one 2009-06-07T21:42:52Z 2009-06-07T21:42:52Z <p>We do write unit tests. We found that in the long term we save time - especially with regressions.</p> <p>I found that it is much harder to come up with a testable design than writing unit tests.</p> http://stackoverflow.com/questions/962887/do-you-have-the-time-to-write-unit-tests/962900#962900 0 Answer by Marcin Cylke for Do you have the time to write Unit tests? Marcin Cylke 2009-06-07T21:47:07Z 2009-06-07T21:47:07Z <p>Steve, I think You should read about Test Driven Development - nice way of creating software. At first requires some time investment, but results in both - unit tests and working code. And the time you spend creating both usually is comparable to writting only code :)</p> <p>Not writting unit tests will leave you with no actual certainity, that your code works as it should - what about border cases, etc. It is really a better way of writting software. Try to test it on your own first, than give it to testers :-)</p> http://stackoverflow.com/questions/962887/do-you-have-the-time-to-write-unit-tests/962902#962902 9 Answer by DOK for Do you have the time to write Unit tests? DOK 2009-06-07T21:48:34Z 2009-06-07T21:48:34Z <p>This is a really popular concern around here.</p> <p>This one got 30 helpful answers. <a href="http://stackoverflow.com/questions/67299/is-unit-testing-worth-the-effort">Is Unit Testing worth the effort?</a></p> <p>A bunch more here <a href="http://stackoverflow.com/questions/286587/are-you-really-using-unit-tests">Are you really using unit tests?</a></p> <p>and <a href="http://stackoverflow.com/questions/708047/the-value-of-unit-testing">The Value of Unit Testing</a></p> http://stackoverflow.com/questions/962887/do-you-have-the-time-to-write-unit-tests/962904#962904 3 Answer by Yassir for Do you have the time to write Unit tests? Yassir 2009-06-07T21:49:03Z 2009-06-07T21:49:03Z <p>Why are you lazy ? a good unit test will take less than a minute to make and will save you hours of debugging and help you refactor with confidence ...</p> http://stackoverflow.com/questions/962887/do-you-have-the-time-to-write-unit-tests/962907#962907 1 Answer by Campbell for Do you have the time to write Unit tests? Campbell 2009-06-07T21:50:02Z 2009-06-07T21:50:02Z <p>As far as I am concerned I don't have the time NOT to write unit tests.</p> <p>Without good unit tests, how can I be sure that my code is correct, it works as specified, and I'm not going to get defects when I hand the code over to QA.</p> <p>Unit tests save time when we get to the QA process, thus allowing us to deliver the product sooner, with higher quality. Why would anyone not want that? How much does a unit test cost? 20% of your time? How much does a tester cost? 100% of your time? The numbers don't lie!</p> http://stackoverflow.com/questions/962887/do-you-have-the-time-to-write-unit-tests/962918#962918 6 Answer by duffymo for Do you have the time to write Unit tests? duffymo 2009-06-07T21:54:20Z 2009-06-07T21:54:20Z <p>Writing tests isn't just about testing. It's also about design and managing dependencies.</p> <p>When you write a test there's a subtle shift that happens: you change from a developer of a class to a client. You start looking at things from your client's point of view. </p> <p>If you find that your class is hard to use because its API is complete, you'll refactor it so it's easier. That's design.</p> <p>If you find that your class is hard to test because the dependencies are too great, you'll break some of those dependencies to make it easier. That's managing dependencies.</p> <p>The real benefit is that developers become responsible for the quality of their work. Verifying proper behavior of your work isn't the responsibility of some tester - it's up to you. If you're finding problems before you integrate your code it's far better than letting it go downstream and finding out later.</p> http://stackoverflow.com/questions/962887/do-you-have-the-time-to-write-unit-tests/962937#962937 1 Answer by tvanfosson for Do you have the time to write Unit tests? tvanfosson 2009-06-07T22:08:17Z 2009-06-07T22:08:17Z <p>Ever heard of the story of the tortoise and the hare? Yes, not writing unit tests can accelerate your initial development. Over time, though, the lack of tests makes it harder and harder to continue to write code without breaking the software. Eventually, you start spending more and more time debugging your code to find what you've broken, time that could instead be used writing code. If you don't write unit tests, your development velocity eventually suffers.</p> <p>When you do write unit tests, you have a safety net of code that can be used to make sure that you don't make breaking changes when you write new code. If you do make a breaking change, your tests will show you where to look and what to fix in order to fix the break that you made. Yes, your initial velocity is lower and writing tests does add to development time at first, but you maintain your velocity as the code base grows rather than decrease over time.</p> <p>Slow and steady wins the race.</p> <p>Once you've made the commitment to doing unit testing, choosing the long term view towards your development velocity, there are ways that are worse and better to write them. I find that I am more motivated to write tests and write less code, which is another savings, if I write the tests first, then write the code to pass the tests. This way I only write enough tests to define the functionality -- every test is useful, keeping me motivated. I also write just enough code to pass the test, no extra features, partly because I don't want to write the tests for those features unless I need them.</p> <p>Writing tests has other benefits: quality, better design (to make testing easy force you to make your design decoupled), etc., but in the long run it is even faster than not writing them.</p> http://stackoverflow.com/questions/962887/do-you-have-the-time-to-write-unit-tests/962949#962949 4 Answer by Phil Nash for Do you have the time to write Unit tests? Phil Nash 2009-06-07T22:16:25Z 2009-06-07T22:16:25Z <p>One aspect that a few answers I've read so far (can't speak for answers written after this one) have alluded to, but not said outright, is that if you've finished your coding and then you start to think about whether writing unit tests is time worth spending, then you are thinking about it the wrong way.</p> <p>Even if you're not doing full TDD, unit testing is as much about the <em>design of your code</em> as about writing the tests. If you've designed your code to be testable a few things happen:</p> <ol> <li>The code quality general improves: it becomes more cohesive, more loosely coupled, less brittle. This will tend to reduce your bug incidents straight away.</li> <li>Your code will be more easy to test (well, that was the idea, after all) - so writing tests shouldn't have to take a long time.</li> <li>You'll be feeling good about the code and looking forward to writing the tests - it's a sort of a feel-good feedback loop! If development time does go up it's probably because the problem space was quite complex and they really needed a good set of tests be well covered.</li> </ol> <p>Don't forget, too, that during development we're finding and fixing bugs all the time. If you've designed for testability - or better still - are being test driven, you'll tend to spend less time introducing and tracking down those bugs too. So overall development time may well go down - even before you think about the bugs you missed and all the later benefits that others have talked about (confidence when refactoring, catching regressions etc).</p> <p>Finally, unit testing, and TDD especially, take a while to get into the mindset of - but once you're there you'll wonder how you did it any other way - and you'll think about writing code without a unit test in much the same way you might think about walking a tight rope 50 stories up with no safety net or other support!</p> http://stackoverflow.com/questions/962887/do-you-have-the-time-to-write-unit-tests/962956#962956 0 Answer by Cwoo for Do you have the time to write Unit tests? Cwoo 2009-06-07T22:32:06Z 2009-06-07T22:32:06Z <p>Working on a project at the moment that has no unit tests. There are several developers and many different requirements, with new ones being added fairly often. A constant theme that seems to be occurring is we will finish a feature, hand it over, and the testers will come back to us a few days later pointing out something has mysteriously stopped working in the latest build.<br/><br/> Not only that, but when we fix the thing that was put in to fix the thing that inadvertently broke something we are finding we are occasionally breaking something else! Quite a daisy chain going on. Id be the first person to say there might be a few bogey men lurking in our code but I keep getting this nagging feeling that we would be saving an awful lot of time if we had a good bank of unit tests stopping us going back and forth between testing.</p> http://stackoverflow.com/questions/962887/do-you-have-the-time-to-write-unit-tests/962988#962988 0 Answer by gogole for Do you have the time to write Unit tests? gogole 2009-06-07T22:59:59Z 2009-06-07T22:59:59Z <p>Integrating unit tests into your development process is going to save you a lot of headache. Personally unit tests help me discover additional scenarios my code should be able to handle or break gracefully under allowing me to augment my code to meet these additional scenarios when needed.</p> http://stackoverflow.com/questions/962887/do-you-have-the-time-to-write-unit-tests/963003#963003 1 Answer by lavinio for Do you have the time to write Unit tests? lavinio 2009-06-07T23:08:36Z 2009-06-07T23:08:36Z <p>Writing unit tests after-the-fact is almost impossible.</p> <p>The proper time to write unit tests is <strong>before</strong> you write the code.</p> <p>The cycle we use on our project is to write the tests to the interface, and then watch the code fail. Then we add code until the tests succeeds.</p> <p>If test development comes first, then there is no issue of taking time to write them, nor is there the tendency to move on because the code you just wrote "appears" to be working as designed.</p> <p>See the second-to-last paragraph under this answer at <a href="http://stackoverflow.com/questions/771011/what-are-the-pros-and-cons-of-automated-unit-tests-vs-automated-integration-tests/820070#820070">What are the pros and cons of automated Unit Tests vs automated Integration tests?</a>.</p> http://stackoverflow.com/questions/962887/do-you-have-the-time-to-write-unit-tests/963013#963013 1 Answer by Don Branson for Do you have the time to write Unit tests? Don Branson 2009-06-07T23:21:17Z 2009-06-07T23:21:17Z <p>In the mid-90s I was privileged to be on a team building a service-oriented middleware architecture (well before SOA became the buzzword it is today). We used an underlying library that implemented XDR, for which we had no unit tests. Since much of our software was built on this and a couple other core technologies, it was important that they be as solid as possible. Make the foundation solid, and the rest will follow. I decided to build a suite of unit tests against this software, suspecting that there were some bugs in there. Using a coverage tool, I wrote tests that covered the entire XDR library, and we found that the suite would not run on one of our twenty or so supported platforms. We fixed that bug in the library.</p> <p>After that, we found that one of our nagging bugs went away in our Directory Service. It turns out that the two were related. I took some time to build the test suite, but not that much. It saved us time in supporting the Directory Service. It probably saved application and service developers time, too, but we didn't research that.</p> <p>After that, when it came to the value of testing, I told everyone who would listen, "We don't have time to skip that step." And it's still true today. Can you afford the extra time it takes to skip testing?</p> http://stackoverflow.com/questions/962887/do-you-have-the-time-to-write-unit-tests/963487#963487 1 Answer by Jim Ferrans for Do you have the time to write Unit tests? Jim Ferrans 2009-06-08T05:08:00Z 2009-06-08T05:08:00Z <p>I once developed an interpreter for VoiceXML (an XML-based markup for driving voice conversations between a human and a computer). Two months into development I found that when adding a new feature broke a dialog that had been working at least a quarter of the time, so that when I called my interpreter up on the phone, it would tell me "An error has occurred ... Goodbye" in it's most annoying robot voice! </p> <p>So I spent considerable time implementing a mock speech synthesizer, a mock speech recognizer, and a way to run the interpreter from text files and compare the last known good output with the current output. Then I would implement test cases and features in parallel, and rerun all the regressions on each change.</p> <p>After these unit tests were running, I was able to progress faster with feature development. I'd have to say one hour devoted to the unit tests and the test framework saved me at least two and perhaps three hours in development.</p> http://stackoverflow.com/questions/962887/do-you-have-the-time-to-write-unit-tests/963543#963543 1 Answer by Gilad Naor for Do you have the time to write Unit tests? Gilad Naor 2009-06-08T05:40:33Z 2009-06-08T05:40:33Z <p>When debugging, I recreate the bug by writing a unit test that recreates the bug. I do this naturally as part of the debugging process, and it rarely takes extra time to write, since I'd have to do this anyways.</p> <p>This way, when the bug is fixed, there's a unit test that makes sure the bug doesn't reappear, which unfortunately happens all too often (merges, anyone?)</p>