What is a reasonable code coverage % for unit tests (and why)? - Stack Overflow most recent 30 from stackoverflow.com2009-11-21T21:46:53Zhttp://stackoverflow.com/feeds/question/90002http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why27What is a reasonable code coverage % for unit tests (and why)?sanity2008-09-18T04:25:40Z2009-06-26T06:49:29Z
<p>If you were to mandate a minimum percentage code-coverage for unit tests, perhaps even as a requirement for committing to a repository, what would it be?</p>
<p>Please explain how you arrived at your answer (since if all you did was pick a number, then I could have done that all by myself ;)</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/90011#900115Answer by stephbu for What is a reasonable code coverage % for unit tests (and why)?stephbu2008-09-18T04:27:43Z2008-09-18T04:27:43Z<p>85% would be a good starting place for checkin criteria. </p>
<p>I'd probably chose a variety of higher bars for shipping criteria - depending on the criticality of the subsystems/components being tested.</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/90016#900160Answer by Dr8k for What is a reasonable code coverage % for unit tests (and why)?Dr8k2008-09-18T04:28:50Z2008-09-18T04:28:50Z<p>I would agree, anything above 80-85% is pretty good</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/90019#900191Answer by Thomas for What is a reasonable code coverage % for unit tests (and why)?Thomas2008-09-18T04:29:23Z2008-09-18T04:29:23Z<p>It depends greatly on your application. For example, some applications consist mostly of GUI code that cannot be unit tested.</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/90021#9002170Answer by Jon Limjap for What is a reasonable code coverage % for unit tests (and why)?Jon Limjap2008-09-18T04:30:10Z2008-09-18T05:45:09Z<p>This prose by Alberto Savoia answers precisely that question (in a nicely entertaining manner at that!):</p>
<p><a href="http://www.artima.com/forums/flat.jsp?forum=106&thread=204677" rel="nofollow">http://www.artima.com/forums/flat.jsp?forum=106&thread=204677</a></p>
<blockquote>
<p><strong>Testivus On Test Coverage</strong></p>
<p>Early one morning, a programmer asked
the great master:</p>
<p>“I am ready to write some unit tests. What code coverage should I aim
for?”</p>
<p>The great master replied:</p>
<p>“Don’t worry about coverage, just write some good tests.”</p>
<p>The programmer smiled, bowed, and
left.</p>
<p>...</p>
<p>Later that day, a second programmer
asked the same question.</p>
<p>The great master pointed at a pot of
boiling water and said:</p>
<p>“How many grains of rice should put in that pot?”</p>
<p>The programmer, looking puzzled,
replied:</p>
<p>“How can I possibly tell you? It depends on how many people you need to
feed, how hungry they are, what other
food you are serving, how much rice
you have available, and so on.”</p>
<p>“Exactly,” said the great master.</p>
<p>The second programmer smiled, bowed,
and left.</p>
<p>...</p>
<p>Toward the end of the day, a third
programmer came and asked the same
question about code coverage.</p>
<p>“Eighty percent and no less!” Replied the master in a stern voice,
pounding his fist on the table.</p>
<p>The third programmer smiled, bowed,
and left.</p>
<p>...</p>
<p>After this last reply, a young
apprentice approached the great
master:</p>
<p>“Great master, today I overheard you answer the same question about
code coverage with three different
answers. Why?”</p>
<p>The great master stood up from his
chair:</p>
<p>“Come get some fresh tea with me and let’s talk about it.”</p>
<p>After they filled their cups with
smoking hot green tea, the great
master began to answer:</p>
<p>“The first programmer is new and just getting started with testing.
Right now he has a lot of code and no
tests. He has a long way to go;
focusing on code coverage at this time
would be depressing and quite useless.
He’s better off just getting used to
writing and running some tests. He can
worry about coverage later.”</p>
<p>“The second programmer, on the other hand, is quite experience both
at programming and testing. When I
replied by asking her how many grains
of rice I should put in a pot, I
helped her realize that the amount of
testing necessary depends on a number
of factors, and she knows those
factors better than I do – it’s her
code after all. There is no single,
simple, answer, and she’s smart enough
to handle the truth and work with
that.”</p>
<p>“I see,” said the young apprentice,
“but if there is no single simple
answer, then why did you answer the
third programmer ‘Eighty percent and
no less’?”</p>
<p>The great master laughed so hard and
loud that his belly, evidence that he
drank more than just green tea,
flopped up and down.</p>
<p>“The third programmer wants only simple answers – even when there are
no simple answers … and then does not
follow them anyway.”</p>
<p>The young apprentice and the grizzled
great master finished drinking their
tea in contemplative silence.</p>
</blockquote>
<p><strong>Update</strong></p>
<p>The point of this whole anecdote is that you should try and not focus on the coverage percentage <em>per se</em>, or try to find an arbitrary number for it, but instead focus on having as much logic and functionality tested as is humanly possible. </p>
<p>It is quite reasonable to have a, say, 50% coverage rate if only because only 50% of the code contains logic that can be tested, and the other 50% happens to be simple DTOs or things that are handled by a framework (you don't need to test the functionalities of your framework).</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/90022#900220Answer by 64BitBob for What is a reasonable code coverage % for unit tests (and why)?64BitBob2008-09-18T04:30:24Z2008-09-18T04:30:24Z<p>If this were a perfect world, 100% of code would be covered by unit tests. However, since this is NOT a perfect world, it's a matter of what you have time for. As a result, I recommend focusing less on a specific percentage, and focusing more on the critical areas. If your code is well-written (or at least a reasonable facsimile thereof) there should be several key points where APIs are exposed to other code. </p>
<p>Focus your testing efforts on these APIs. Make sure that the APIs are 1) well documented and 2) have test cases written that match the documentation. If the expected results don't match up with the docs, then you have a bug in either your code, documentation, or test cases. All of which are good to vet out.</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/90026#900261Answer by Nescio for What is a reasonable code coverage % for unit tests (and why)?Nescio2008-09-18T04:30:42Z2008-09-18T04:30:42Z<p>I don't think there can be such a B/W rule.<br>
Code should be reviewed, with particular attention to the critical details.<br>
However, if it hasn't been tested, it has a bug!</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/90027#900270Answer by cyborg for What is a reasonable code coverage % for unit tests (and why)?cyborg2008-09-18T04:31:14Z2008-09-18T04:31:14Z<p>Short answer: 60-80%</p>
<p>Long answer:
I think it totally depends on the nature of your project. I typically start a project by unit testing every practical piece. By the first "release" of the project you should have a pretty good base percentage based on the type of programming you are doing. At that point you can start "enforcing" a minimum code coverage.</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/90028#900280Answer by William Keller for What is a reasonable code coverage % for unit tests (and why)?William Keller2008-09-18T04:31:39Z2008-09-18T04:31:39Z<p>Depending on the criticality of the code, anywhere from 75%-85% is a good rule of thumb.
Shipping code should definitely be tested more thoroughly than in house utilities, etc. </p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/90034#900340Answer by Kishork for What is a reasonable code coverage % for unit tests (and why)?Kishork2008-09-18T04:32:14Z2008-09-18T04:32:14Z<p>We were targeting >80% till few days back, But after we used a lot of Generated code, We do not care for %age, but rather make reviewer take a call on the coverage required.</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/90038#900380Answer by codeLes for What is a reasonable code coverage % for unit tests (and why)?codeLes2008-09-18T04:33:11Z2008-09-18T04:33:11Z<p>This has to be dependent on what phase of your application development lifecycle you are in. </p>
<p>If you've been at development for a while and have a lot of implemented code already and are just now realizing that you need to think about code coverage then you have to check your current coverage (if it exists) and then use that baseline to set milestones each sprint (or an average rise over a period of sprints), which means taking on code debt while continuing to deliver end user value (at least in my experience the end user doesn't care one bit if you've increased test coverage if they don't see new features). </p>
<p>Depending on your domain it's not unreasonable to shoot for 95%, but I'd have to say on average your going to be looking at an average case of 85% to 90%.</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/90040#9004011Answer by Gishu for What is a reasonable code coverage % for unit tests (and why)?Gishu2008-09-18T04:33:58Z2008-09-18T04:33:58Z<p>Code Coverage is a misleading metric if 100% coverage is your goal (instead of 100% testing of all features). </p>
<ul>
<li>You could get a 100% percent by hitting all the lines once. However you could still miss out testing a particular sequence (logical path) in which those lines are hit.</li>
<li>You could not get a 100% but still have tested all your code-paths. Having tests that test every 'throw ExceptionTypeX' or similar defensive programming guard you've put in is a 'nice to have' not a 'must have' Similarly you'll find setters being flagged as 'not-covered' by your test suite. However they are needed by your clients.. just that your test suite didn't call them doesn't mean you've untested code.</li>
</ul>
<p>So trust yourself or your developers to be thorough and cover every path through their code. Be pragmatic and don't chase the magical 100% coverage. If you TDD your code you should get a 90%+ coverage as a bonus. Use code-coverage to highlight chunks of code you have missed (shouldn't happen if you TDD though.. since you write code only to make a test pass. No code can exist without its partner test. )</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/90042#900421Answer by dimarzionist for What is a reasonable code coverage % for unit tests (and why)?dimarzionist2008-09-18T04:34:09Z2008-09-18T04:34:09Z<p>I think the best symptom of correct code coverage is that amount of concrete problems unit tests help to fix is reasonably corresponds to size of unit tests code you created.</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/90048#900481Answer by Thanatos for What is a reasonable code coverage % for unit tests (and why)?Thanatos2008-09-18T04:35:32Z2008-09-18T04:35:32Z<p>If you've been doing unit testing for a decent amount of time, I see no reason for it not to be approaching 95%+. However, at a minimum, I've always worked with 80%, even when new to testing.</p>
<p>This number should only include code written in the project (excludes frameworks, plugins, etc.) and maybe even exclude certain classes composed entirely of code written of calls to outside code. This sort of call should be mocked/stubbed.</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/90089#900892Answer by Jon Limjap for What is a reasonable code coverage % for unit tests (and why)?Jon Limjap2008-09-18T04:42:07Z2008-09-18T04:42:07Z<p>I'd have another anectode on test coverage I'd like to share.</p>
<p>We have a huge project wherein, over twitter, I noted that, <a href="http://twitter.com/LaTtEX/statuses/710637842" rel="nofollow">with 700 unit tests, we only have 20% code coverage</a>.</p>
<p><a href="http://stackoverflow.com/users/6380/scott-hanselman">Scott Hanselman</a> replied with <a href="http://twitter.com/shanselman/statuses/710655962" rel="nofollow">words of wisdom</a>:</p>
<blockquote>
<p>Is it the RIGHT 20%? Is it the 20%
that represents the code your users
hit the most? You might add 50 more
tests and only add 2%.</p>
</blockquote>
<p>Again, it goes back to my <a href="http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why#90021">Testivus on Code Coverage</a> Answer. How much rice should you put in the pot? It depends.</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/90141#901410Answer by gabosgab for What is a reasonable code coverage % for unit tests (and why)?gabosgab2008-09-18T04:53:45Z2008-09-18T04:53:45Z<p>Generally speaking, from the several engineering excellence best practices papers that I have read, 80% for new code in unit tests is the point that yields the best return. Going above that CC% yields a lower amount of defects for the amount of effort exerted. This is a best practice that is used by many major corporations.</p>
<p>Unfortunately, most of these results are internal to companies, so there are no public literatures that I can point you to.</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/96303#963031Answer by Don Kirkby for What is a reasonable code coverage % for unit tests (and why)?Don Kirkby2008-09-18T20:00:52Z2008-09-18T20:00:52Z<p>Check out <a href="http://www.crap4j.org/" rel="nofollow">Crap4j</a>. It's a slightly more sophisticated approach than straight code coverage. It combines code coverage measurements with complexity measurements, and then shows you what complex code isn't currently tested.</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/100896#1008961Answer by quamrana for What is a reasonable code coverage % for unit tests (and why)?quamrana2008-09-19T10:11:17Z2008-09-19T10:11:17Z<p>My answer to this conundrum is to have 100% line coverage of the code you can test and 0% line coverage of the code you can't test.</p>
<p>My current practice in Python is to divide my .py modules into two folders: app1/ and app2/ and when running unit tests calculate the coverage of those two folders and visually check (I <strong>must</strong> automate this someday) that app1 has 100% coverage and app2 has 0% coverage.</p>
<p>When/if I find that these numbers differ from standard I investigage and alter the design of the code so that coverage conforms to the standard.</p>
<p>This does mean that I can recommend achieving 100% line coverage of library code.</p>
<p>I also occasionally review app2/ to see if I could possible test any code there, and If I can I move it into app1/</p>
<p>Now I'm not too worried about the aggregate coverage because that can vary wildly depending on the size of the project, but generally I've seen 70% to over 90%.</p>
<p>With python, I should be able to devise a smoke test which could automatically run my app while measuring coverage and hopefully gain an aggreagate of 100% when combining the smoke test with unittest figures.</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/102786#1027861Answer by Si Keep for What is a reasonable code coverage % for unit tests (and why)?Si Keep2008-09-19T15:23:34Z2008-09-19T15:23:34Z<p>Code coverage is great but only as long as the benefits that you get from it outweigh the cost/effort of achieving it.</p>
<p>We have been working to a standard of 80% for some time, however we have just made the decison to abandon this and instead be more focused on our testing. Concentrating on the complex business logic etc,</p>
<p>This decision was taken due to the increasing amount of time we spent chasing code coverage and maintaining existing unit tests. We felt we had got to the point where the benefit we were getting from our code coverage was deemed to be less than the effort that we had to put in to achieve it.</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/498657#4986570Answer by for What is a reasonable code coverage % for unit tests (and why)?2009-01-31T11:16:42Z2009-01-31T11:16:42Z<p>Viewing coverage from another perspective: Well-written code with a clear flow of control is the easiest to cover, the easiest to read, and usually the least buggy code. By writing code with clearness and coverability in mind, and by writing the unit tests in parallel with the code, you get the best results IMHO.</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/795598#7955980Answer by Rob Scott for What is a reasonable code coverage % for unit tests (and why)?Rob Scott2009-04-27T22:49:59Z2009-04-27T22:49:59Z<p>I think that what may matter most is knowing what the coverage trend is over time and understanding the reasons for changes in the trend. Whether you view the changes in the trend as good or bad will depend upon your analysis of the reason.</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/795619#7956190Answer by taoufik for What is a reasonable code coverage % for unit tests (and why)?taoufik2009-04-27T22:56:46Z2009-04-27T22:56:46Z<p>Code coverage is great, but functionality coverage is even better. I don't believe in covering every single line I write. But I do believe in writing 100% test coverage of all the functionality I want to provide (even for the extra cool features I came with myself and which were not discussed during the meetings).</p>
<p>I don't care if I would have code which is not covered in tests, but I would care if I would refactor my code and end up having a different behaviour. Therefore, 100% functionality coverage is my only target.</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/795683#7956830Answer by Gary Kephart for What is a reasonable code coverage % for unit tests (and why)?Gary Kephart2009-04-27T23:29:07Z2009-04-27T23:29:07Z<p>I use cobertura, and whatever the percentage, I would recommend keeping the values in the cobertura-check task up-to-date. At the minimum, keep raising totallinerate and totalbranchrate to just below your current coverage, but <em>never</em> lower those values. Also tie in the Ant build failure property to this task. If the build fails because of lack of coverage, you know someone's added code but hasn't tested it. Example:</p>
<pre><code><cobertura-check linerate="0"
branchrate="0"
totallinerate="70"
totalbranchrate="90"
failureproperty="build.failed" />
</code></pre>