I'm currently looking for ways to improve the productivity of our team. I've read in a number of places that unit testing can be used to improve productivity. I can imagine writing unit tests now can be helpful in the future, but does it help in the short term too? Because I don't understand how writing more code (=more potential bugs) can help us meet deadlines.
|
Unit testing is not about producing more lines of codes per day. It is to ensure that every day, your new lines of code don't cause more bugs. You need to be very careful about what you mesure when you try to evaluate your "productivity". It might help you meet your deadlines however, since you will spend less time fixing stuff. It is not something aimed for the "short term" as in "we'll use unit testing and our next project will be done in 80% of the time". |
|||
|
|
|
Not short term, but not long term either, having automated tests will allow you to detect problems (regressions) caused by wrong bug-fixing, or wrong-developments, faster ; and that is definitly nice. It means when your application is in testing phase, each time a bug is corrected, you have less risk of introducing new ones.
And the sooner a bug is detected, the simpler and less costly it is to fix : if a bug doesn't have time to impact other developpers, it is way better too.
And as more developpers know the code, more developpers will be able to fix bugs in parts they did not develop initialy. |
|||||||
|
|
Increasing productivity with unit testing Also read Test Driven Development
|
|||||||
|
|
Whilst a gross oversimplication, the sooner you catch a bug the less expensive it is to fix. As such, unit testing will at least capture some bugs up-front. I suspect that in terms of productivity, it's a question of whether it's easier to fix a bug in code that's fresh in a programmers mind as opposed to a bug in code that's 'n' months old, etc. However, it's somewhat idealistic to presume that unit testing (outside of a larger testing regime) is some form of silver bullet. |
|||
|
|
|
"Test" is the wrong word with unit tests. "Defining behavior," is perhaps a better term. Unit tests and TDD can improve productivity (even mid-term) in a number of ways.
The biggest advantage, in my experience, of TDD-written code is the fact that it's well-defined. You start by defining what the code should do, and then making it do that. This contrasts with "regular" development practices which often involve writing a bunch of code, and then testing it to see what it actually does. The other advantage of using a TDD-like methodology, is you get working code almost immediately, even if the end-to-end solution isn't in place. And it's almost always easier to add to working code to get more working code, rather than writing a bunch of code that's in an unknown state and then finding out what doesn't work correctly. |
|||
|
|
|
How were you going to test without Unit Tests? By clicking around, visually checking answers? Is writing code once and running it many times a cost or a saving? Were you going to exercise the various error conditions? Might you find the bugs later if you don't what are the relative costs of fixing bugs earlier rather than later? However for me the most important reason is one that's less obvious: if you write the tests first (truly TDD) or even as you go you are almost lead into considering the fringe cases. And the result is that the code is just better. Less rework. Another theory, humans are very goal oriented. We like rewards, and repeat behavious that give us rewards (mmm reputation mmmm ... give me a question to answer :-) seeing those little green ticks as our tests pass motivates us. You may get more code, but it gets written much quicker. |
||||
|
|
Yes, because you force your developers and architects to solve one problem at a time.
The amount of additional code is exactly the same. n lines of logic = n lines of tests. But as you know, the raw coding is not the part that takes more time, in particular because you can parallelize it very well. So writing more code is not the real issue. To meet deadlines you have to produce top quality code to be released, and without testing you have
|
|||
|
|
|
Here are some thoughts. For my answer, I will define productivity as # of lines divided by number of bugs. If applied well, on average, I think unit tests will yield higher productivity.
It is true that, in the wrong hands, unit tests can feel like wheels spinning in the sand. But with some experience, the payoff is worth it, even in the short term. Yes, there may be fewer lines of production code but the bug rate will be much better. |
|||
|
|
|
When you focus on writing tests close after or even before writing the real code you'll prevent yourself from writing too big chunks. When you have a lot of small tests then it's very likely that you structure your code so you're able to write these small tests. This means that the classes don't need a lot of infrastructure to work etc. Things like dependency injection come in handy too because you may want to inject mock classes for your tests. This leads to more loosely coupled classes which will improve the overall code quality and make the code more maintainable. Additionally the safety-net of unittests will help you while the software evolves (and not only after the product is ready). While coding most(aka all) people produce bugs. This leads to longer development of small features. If you write tests the probability for bugs decreases and if you find a bug you can be sure that your fix of the bug won't have sideaffects (if your test coverage of the "other" code is good). This saves a lot of time because you don't have to search for code that may be affected by the last change. This leads to a higher development speed after all. Of course a developer needs to practise to write tests, but you'll get quicker pretty soon. Especially if you get used to libs that help you writing tests like easymock or something like that. |
|||
|
|
|
On short term I think unit tests don't help that much since it only reduces some testing time. The smaller the project the less the impact of this. However the great thing about unit tests is that with writing them you can ensure that a specific kind of error you have coded against will always be detected. For long term they're a must have, for mid term I would recommend them. And on the short term they will probably decrease productivity but if the project itself isn't short term you're bound to benefit from them. |
|||
|
|
|
Unit testing improves short term productivity in the following sense: It makes it more likely that your code solves the right problem earlier. Spending neuron cycles on creating tests will make the programmer think about the different use cases and the user interface (or API) of that code. The opposite scenario would be to code away for a couple of weeks and only then realize that the code solves half of the problem. Now you have to patch your code, or perhaps even throw it away and start over. |
|||
|
|
|
How does unit testing improve productivity? The implicit assumption in this question is that unit testing does improve 'productivity'. If we define productivity as producing a perfect deliverable for a given effort in man-hours then being more productive can be interpreted as producing that deliverable in less than the given effort. If a coder produces 'perfect' code straight-off then doing unit testing will decrease productivity. Testing is not primarily for improving productivity, it is for validating and verifying software entities in the sense that you are checking the right product is built and that the right product is built correctly. Creating tests and running them does have side-effects, the most important one being that of making the software creators understand the problem that they are trying to solve with software. |
|||
|
|
|
If you by short term mean a month or two I think the answer is yes. How? When I need to make changes to my own code that I haven't touched for perhaps just a few weeks, or to code that somebody else in the team wrote, I feel a lot more confident if there are unit tests and the code coverage is good. If there were no tests I would be more inclined to patch, work-around and generally avoid touching the main algorithm. Do that a couple of times and the code becomes incomprehensible.
I'm not sure whether I'm answering your question. It really depends on how short the short term is. ;-) |
||||
|
|
|
Modern unit testing is not about catching bugs - it's about designing and documenting interfaces. Writing tests helps you think through how your code will be used, and also documents how they're intended to be used. Unit testing can catch bugs introduced while refactoring, but this isn't usually the major source of bugs for a project. So in conclusion, unit testing will make it easier (ie cheaper/faster) to create better quality code. But it won't directly help you get any given task done faster. Read articles about the myths and beneifts surrounding unit testing: |
|||
|
|