The*OpenCoverage*website (http://opencoverage.net) now demonstrates a post-commit patch review system utilizing the*Coco*code coverage tool from*froglogic (https://coco.froglogic.com).

With it, one can estimate whether there are enough tests for code changes, or whether to write new tests. Coco can therefore play a useful role in quality control.

What is a post-commit patch review?

Post-commit patch review is an extension of the*Coco report generation*feature (https://doc.froglogic.com/squish-coc....html#cmreport).

The extension supports a review of changes applied to a software project. Typically, one wants to know whether the test suite of the project contains enough tests that target specifically the lines of code that have changed. For that purpose the*Coco patch analysis*(https://doc.froglogic.com/squish-coc...patch-analysis) creates a report which shows whether there are enough tests for the changed code, or whether new tests are required.

If desired, run exactly those tests that execute the code in the patch. This will mean large speedup in comparison with the execution of a full test suite.
To analyse a recent patch one merely needs a software project that instrumented with Coco, and a set of tests for the project run at least once. With patch analysis, one can find out how the project’s code coverage will differ after applying a patch. This information is gathered even before running the tests again. One can answer the question: Which of the lines in the patch will be covered by the existing tests, and which will not? For all lines covered by the tests, the patch analysis also displays the tests that will cover them.

Patch analysis is available*before*applying a patch to a software project as well. Then it generates a report for the code in the patch based on previously executed tests without requiring a re-execution of the tests.

Patch reviews in OpenCoverage

In*OpenCoverage, we already show the code coverage for selected open-source projects. Now we have added an automated post-commit patch review for them. We compare the most recent changes in the Git repository with the newest revision.

An*overview table (http://www.opencoverage.net/analysis...arative)*shows the summaries of the analyses for each software project. It contains for each patch a short overview, with the number of modified lines executed and not executed, and other information.

Visit the OpenCoverage site at http://opencoverage.net or learn more about the Coco code coverage tool at https://coco.froglogic.com