up vote 14 down vote favorite
3
share [g+] share [fb]

There's a lot of discussion about unit testing these days. Here's a poll for the best reason to do it.

ONLY ONE REASON PER ANSWER PLEASE!

link|improve this question
show 3 more comments
feedback

46 Answers

1 2

So that when you refactor your code / add a new feature, you can be sure that it still works.

And to ensure that it works the first time round (hint, write the unit tests first)

Thinking about the code is a nice incidental benefit of writing tests, but is not the primary reason to do so. I can think about my code without writing a test, but thinking about it is not a great way of testing it.

link|improve this answer
show 3 more comments
feedback

Confidence in your code that it won't break due to modifications/refactoring.

link|improve this answer
feedback

To make you think about your code.

link|improve this answer
1  
Yes! Start with the test, write a test that shows the interface/syntax you want, then write the code. You're actually closer to the code, you start by thinking about how your code will be used, which I didn't realize to start with. – Hamish Smith Sep 27 '08 at 21:36
show 1 more comment
feedback

To make sure the guy who changes your code doesn't screw it up.

link|improve this answer
show 1 more comment
feedback

Catch regression errors.

link|improve this answer
show 1 more comment
feedback

Because the later in the development phase a bug is caught the more expensive it is to fix.

link|improve this answer
show 1 more comment
feedback

Unit tests make all the known responsibilities of the code explicit and transparent, giving a much higher degree of confidence that code will meet expectations, and giving a good indication of areas where behavior is not tested/thought out, too.

Remember that the unit tests in test-driven development are about programming - NOT testing!

link|improve this answer
feedback

It forces you to think about your code from the point of view of its consumer, which can lead to improvements.

link|improve this answer
feedback

Unit testing leads to loosely-coupled design/modules.

link|improve this answer
feedback

all the other answers are taken, so i'll just add: unit tests make great how-to-do-X examples for others

link|improve this answer
feedback

To make sure your stuff works.

link|improve this answer
feedback

Confidence - Prove it works.

link|improve this answer
feedback

To help later on when you need to refactor your code. Whenever you refactor your code, unit tests insure that the new code works as expected.

link|improve this answer
feedback

Create Reusable code - Easily Testable code is Reusable code. 1 Function has 1 Function.

link|improve this answer
show 1 more comment
feedback

To reduce the amount of manual testing & debugging

link|improve this answer
feedback

To find any issues / bugs in code you've just written.

link|improve this answer
feedback

So QA will be slightly less likely to beat you over the head because your feature causes the system to crash.

link|improve this answer
feedback

To make sure your code works, even in conditions that will not occur often.

link|improve this answer
feedback

To simulate situations that may not be possible to produce until the code hits the real world

link|improve this answer
feedback

The best reason to write unit tests is to make sure that the code under test does as you the developer think it should be doing.

Whether or not it meets requirements is outside the scope of the unit test, and can be more aptly described as acceptance testing.

link|improve this answer
feedback

It is a 'living', working design document of what your code should be doing.

link|improve this answer
feedback

It saves a lot of time and programming effort in the long run.

link|improve this answer
feedback

one-answer-per-post beats double-posting-is-bad, doesn't it?

Long-running tests are #2 excuse for legitimately slacking off.

link|improve this answer
feedback

To reduce the time spent testing.

link|improve this answer
feedback

To ensure that your code works when changes are made anywhere in the code base.

link|improve this answer
feedback

Without them, coding in a dynamic language like Ruby becomes a complete disaster. Anything that would allow the following code to compile and run and assert correctly needs help from testing, typos are too easy.

bill=5
bi1l=bill+5
assert bill=5
link|improve this answer
feedback

Because it's easier for a machine to test each object/function with 10,000 possible (and impossible) values than for a person to sit down and use the program in 10 different ways.

I worked in a company that made software to do survey design and reporting (the people who come up to you on the streets with a PDA and ask you a series of questions). When I was hired, they were in the process of releasing their latest, greatest version.

The task that I was given right away was to take a copy of the beta they had so far and load up a bunch of test surveys (by hand) onto a device, and go through them putting in specific answers and checking to see that the result set I got at the end was what it should have been.

Had their code been properly written and modularized, with specific interfaces, they could have written test suites for each component. Then, the two weeks I spent doing testing could have been done automatically in seconds, and we would have found out that our biggest feature in our Enterprise version was completely broken BEFORE announcing it to the world and getting everyone to switch, saving us a lot of egg on our face.

Unit tests tell you when your minor changes have introduced unexpected bugs, and when your major changes have obliterated your functionality completely. You'll never have to worry about forgetting to test a component, and if you get really fancy and integrate it with version control, the system could, upon discovery of a regression, iterate back through each revision until it finds where it broke, and generate a report on who breaks the code most.

link|improve this answer
feedback

Well... it may seem a bit silly but I do it because it's fun! (Thinking about it I remember that Kent Beck said something like that in one of his books)

link|improve this answer
feedback

Decreases turnaround time. Instead of booting up an entire app, just run the unit test.

link|improve this answer
feedback

It's a great way to bake in quality design at a low level

(oh yeah it is fun too!)

link|improve this answer
feedback
1 2

Your Answer

 
or
required, but never shown

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