Code coverage enables the development teams to show that they have performed testing which has covered all logical paths through a program, produce a report to illustrate the extent of test coverage, and then promote this report along with the source code at the various stages of the development lifecycle.
These are the steps to enable code coverage for your applications and then run them to produce code coverage reports:
While an application is running with code coverage, code execution is logged for each program and sub-program that has been compiled with code coverage enabled. The results are stored in a binary results file, which has the filename extension .tcz. The information stored in the results file depends on how you configure test coverage.
Running a program with code coverage uses significantly more resources than running the same program without code coverage enabled. As a result, we recommend that you use code coverage only in development systems; we recommend that you do not use code coverage in production systems.
The results file, .tcz, is a binary file. For convenience, code coverage can also produce a formatted HTML report.
You can also tag statements in your source code and use code coverage to report on whether these statements have been executed. This is particularly useful if you want to see the coverage of new or changed lines in your source code.
As code coverage integrates the Test Coverage utility, the following restrictions apply: