vote up 7 vote down star
2

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!

flag
show 3 more comments

44 Answers

1 2 next
vote up 4 vote down

To make sure your stuff works.

link|flag
vote up 2 vote down

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

link|flag
vote up 3 vote down

Confidence - Prove it works.

link|flag
vote up 12 vote down

To make you think about your code.

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

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

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

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|flag
show 3 more comments
vote up 1 vote down

To reduce the time spent testing.

link|flag
vote up 5 vote down

Catch regression errors.

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

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

link|flag
vote up 0 vote down

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

link|flag
vote up 3 vote down

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

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

link|flag
vote up 5 vote down

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

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

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

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

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

link|flag
vote up 2 vote down

To reduce the amount of manual testing & debugging

link|flag
vote up 4 vote down

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

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

link|flag
vote up 3 vote down

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

link|flag
vote up 3 vote down

Unit testing leads to loosely-coupled design/modules.

link|flag
vote up 2 vote down

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

When you are trying to track-down a bug in your integrated program, unit-tests will help narrow-down the root cause.

link|flag
vote up 0 vote down

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

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

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

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

link|flag
vote up 1 vote down

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

link|flag
vote up 0 vote down

It's great fun.

link|flag
vote up 1 vote down

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

(oh yeah it is fun too!)

link|flag
vote up 0 vote down

I'll add mine, unit testing supports refactoring, by having good coverage with your unit tests you can change the underlying code without fear of breaking existing functionality. This lets you concentrate on keeping your code flexible and only implementing the functionality that you need

link|flag
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.