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!
|
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! | ||||
|
feedback
|
|
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. | ||||
|
feedback
|
|
Confidence in your code that it won't break due to modifications/refactoring. | ||||
|
feedback
|
|
To make you think about your code. | |||||
feedback
|
|
To make sure the guy who changes your code doesn't screw it up. | ||||
|
feedback
|
|
Catch regression errors. | ||||
|
feedback
|
|
Because the later in the development phase a bug is caught the more expensive it is to fix. | ||||
|
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! | ||||
|
feedback
|
|
It forces you to think about your code from the point of view of its consumer, which can lead to improvements. | ||||
|
feedback
|
|
all the other answers are taken, so i'll just add: unit tests make great how-to-do-X examples for others | ||||
|
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. | ||||
|
feedback
|
|
Create Reusable code - Easily Testable code is Reusable code. 1 Function has 1 Function. | ||||
|
feedback
|
|
So QA will be slightly less likely to beat you over the head because your feature causes the system to crash. | ||||
|
feedback
|
|
To make sure your code works, even in conditions that will not occur often. | ||||
|
feedback
|
|
To simulate situations that may not be possible to produce until the code hits the real world | ||||
|
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. | ||||
|
feedback
|
|
It is a 'living', working design document of what your code should be doing. | ||||
|
feedback
|
|
one-answer-per-post beats double-posting-is-bad, doesn't it? Long-running tests are #2 excuse for legitimately slacking off. | ||||
|
feedback
|
|
To ensure that your code works when changes are made anywhere in the code base. | ||||
|
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 | ||||
|
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. | ||||
|
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) | ||||
|
feedback
|
|
Decreases turnaround time. Instead of booting up an entire app, just run the unit test. | ||||
|
feedback
|
|
It's a great way to bake in quality design at a low level (oh yeah it is fun too!) | ||||
|
feedback
|