Home » Archives

Content tagged with: test coverage

[6 Jun 2011 | No Comment | ]

This article covers the coverage analysis of Python:
* Building a network management application
* Installing and running coverage on your test suite
* Generating an HTML report using coverage
* Generating an XML report using coverage
* Getting nosy with coverage

[5 Jan 2010 | No Comment | ]

Cobertura is an open source tool that measures test coverage by instrumenting a code base and watching which lines of code are and are not executed as the test suite runs.

[4 Jan 2010 | No Comment | ]

Code coverage tools measure how thoroughly tests exercise programs.  They are misused more often than they’re used well. This paper describes common misuses in detail, then argues for a particular cautious approach to the use of coverage.