I am working to integrate unit testing into the development process on the team I work on and there are some skeptics. What are some good ways to convince the skeptical developers on the team of the value of Unit Testing? In my specific case we would be adding Unit Tests as we add functionality or fixed bugs. Unfortunately our code base does not lend itself to easy testing.
|
76
|
|||||
|
|
|
When you manually test software, you normally have a small set of tests/actions that you use. Eventually you'll automatically morph your input data or actions so that you navigate yourself around known issues. Unit tests should be there to remind you that things do not work correctly. I recommend writing tests before code, adding new tests/data to evolve the functionality of the main code! |
|||
|
|
|
|
As a physics student i am very driven to actually prove that my code works as it is supposed to. You could either prove this logically, which increases in difficulty drastically as implementation gets more complex, or you can make an (as close as possible) empirical proof of function through good testing. If you don't provide logical proof of function, you have to test. The only alternative is to say "I think the code works...." |
|||
|
|
|
|
One of the benefits of unit testing is predictability. Before unit testing I could have predicted to a great degree of accuracy how long it would take to code something, but not how how much time I would need to debug it. These days, since I can plan what tests I am going to write, I know how long coding is going to take, and at the end of coding, the system is already debugged! This brings predictability to the development process, which remove a lot of the pressure but still retains all the joy!!. |
|||
|
|
|
|
Make the first things you test not related to unit testing. I work mostly in Perl, so these are Perl-specific examples, but you can adapt.
You may not think these are big things, and they're not, but I can guarantee you will catch some slop. When these tests run once an hour, and it catches someone's premature commit, you'll have people say "Hey, that's pretty cool." |
|||
|
|
|
|
Unit testing help you to release software with fewer bugs while reducing overall development costs. You can click the link to read more about the benefits of unit testing |
|||
|
|
