3. Guidance3.1 Test CoverageCode coverage is an important aspect of good engineering practice. Code coverage is a software testing metric that shows you which lines of your source code have been tested (“covered”) and which lines of your source code have not been tested. This insight allows you to improve your testing so you can improve your code. Code coverage provides critical information to show teams where to focus their testing. Code coverage measurement simply determines which statements in a body of code have been executed through a test run, and which statements have not. Code coverage measurements for the software should be selected, implemented, tracked, recorded, and reported. In summary, code coverage is measured for the following reasons: - To know how well our tests test our code
- To know whether we have enough testing in place
- To maintain the test quality over the life cycle of a project
Test coverage is a measure used to describe the degree to which the source code of a program is executed when a particular test suite runs. A program with high test coverage, measured as a percentage, has had more of its source code executed during testing, which suggests it has a lower chance of containing undetected software bugs compared to a program with low test coverage. Many different metrics can be used to calculate test coverage; some of the most basic is the percentage of program subroutines and the percentage of program statements called during the execution of the test suite. If the project does not get 100% structural coverage, it means one of four things and each requires action on the project manager’s part: - Requirement missing - the code that hasn’t been covered is performing an essential activity, but no requirement indicates that this should be done
- Test missing - the code that hasn’t been covered relates to an existing requirement, but no test was implemented for it
- Extraneous/dead code - The code that hasn’t been covered is not traceable to any requirement and isn’t needed by the software
- Deactivated code - the code that hasn’t been covered isn’t traceable to any requirements for the current system but is intended to be executed in certain configurations.
See also Topic 7.06 - Software Test Estimation and Testing Levels, 7.21 - Multi-condition Software Requirements, 8.19 - Dead / Dormant Code and Safety-Critical Software, 8.20 - Safety Specific Activities in Each Phase, SWE-062 - Unit Test, 3.2 Basic Coverage CriteriaTo measure what percentage of code has been exercised by a test suite, one or more coverage criteria are used. Coverage criteria are usually defined as rules or requirements, which a test suite needs to satisfy. There are several coverage criteria, the main ones being: - Function coverage – Has each function (or subroutine) in the program been called?
- Statement coverage – Has each statement in the program been executed?
- Branch coverage – Has each branch of each control structure (such as in if and case statements) been executed? For example, given an, if statement, have both the true and false branches been executed? Another way of saying this is, has every edge in the program been executed?
- Edge coverage – has every edge in the Control flow graph been executed?
- Condition coverage (or predicate coverage) – Has each Boolean sub-expression evaluated both to true and false?
Below is a suggestion on code coverage for software classes. Code coverage versus Software Classification | A | B | C | D | Source code statement coverage | 100% | 100% | AM | AM | Source code decision coverage | 100% | 100% | AM | AM | Source code modified condition and decision coverage | 100% | AM | AM | AM | NOTE: “AM“ means that the value is agreed and signed off by the Center’s Engineering TA and measured. |
Also, note that coverage of libraries/objects vary based on the project’s classification and safety criticality. For example, if a math library is utilized some functions may not be utilized and could go untested. 3.3 Code Coverage MeasurementsCode coverage measurements are defined, tracked, recorded, and reported in SWE-189 - Code Coverage Measurements. The project manager should verify that the code coverage is measured by analysis of the results of the execution tests. Code coverage analysis is the process of (1) finding areas of a program not exercised by a set of test cases, (2) creating additional test cases to increase coverage, and (3) determining a quantitative measure of code coverage, which is an indirect measure of quality. 3.4 Code Coverage ToolsCode coverage is supported for specific languages by tools specific to that language. Not all languages are supported. Code coverage analysis during the unit and component testing can be implemented manually or by an analysis tool. As the source code gets deeper into an embedded system, manual code coverage becomes problematic. When the software is embedded in hardware, the tools’ ability to modify the source code, return the data through the hardware interfaces, and meet hardware performance requirements is an expensive effort. Within the 5.08 - SDP-SMP - Software Development - Management Plan, define the code coverage metric to be used, and the metric goal percentage of the testing suite rigor. Code coverage metrics and goals can differ for specific source code sections requiring more rigor. Within the 5.10 - STP - Software Test Plan, include the code coverage metrics as part of the test results. The code coverage metrics should include a reason for the source code lines reported as not covered in testing. See also SWE-135 - Static Analysis, SWE-219 - Code Coverage for Safety Critical Software, 3.5 Guidance For Systems That Are In Operation And MaintenanceCode coverage is part of the development and testing process. For existing systems, all modifications should assess code coverage and any regression testing and requalification software testing should include code coverage metrics. 3.6 Additional GuidanceAdditional guidance related to this requirement may be found in the following materials in this Handbook: 3.7 Center Process Asset Libraries
See the following link(s) in SPAN for process assets from contributing Centers (NASA Only). |