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!
|
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! |
|||
|
|
|
|
To make sure your stuff works. |
|||
|
|
|
|
To find any issues / bugs in code you've just written. |
|||
|
|
|
|
Confidence - Prove it works. |
|||
|
|
|
|
To make you think about your code. |
|||
|
|
To make sure the guy who changes your code doesn't screw it up. |
|||
|
|
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. |
|||
|
|
To reduce the time spent testing. |
|||
|
|
|
|
Catch regression errors. |
|||
|
|
Confidence in your code that it won't break due to modifications/refactoring. |
|||
|
|
|
|
To ensure that your code works when changes are made anywhere in the code base. |
|||
|
|
|
|
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. |
|||
|
|
|
|
So QA will be slightly less likely to beat you over the head because your feature causes the system to crash. |
|||
|
|
|
|
Because the later in the development phase a bug is caught the more expensive it is to fix. |
|||
|
|
Create Reusable code - Easily Testable code is Reusable code. 1 Function has 1 Function. |
|||
|
|
To make sure your code works, even in conditions that will not occur often. |
|||
|
|
|
|
To reduce the amount of manual testing & debugging |
|||
|
|
|
|
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! |
|||
|
|
|
|
To simulate situations that may not be possible to produce until the code hits the real world |
|||
|
|
|
|
It forces you to think about your code from the point of view of its consumer, which can lead to improvements. |
|||
|
|
|
|
Unit testing leads to loosely-coupled design/modules. |
|||
|
|
|
|
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. |
|||
|
|
|
|
When you are trying to track-down a bug in your integrated program, unit-tests will help narrow-down the root cause. |
|||
|
|
|
|
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 |
|||
|
|
|
|
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. |
|||
|
|
|
|
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) |
|||
|
|
|
|
It is a 'living', working design document of what your code should be doing. |
|||
|
|
|
|
Decreases turnaround time. Instead of booting up an entire app, just run the unit test. |
|||
|
|
|
|
It's great fun. |
|||
|
|
|
|
It's a great way to bake in quality design at a low level (oh yeah it is fun too!) |
|||
|
|
|
|
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 |
|||
|
|