Tests
| Metric | Key | Description | Supported by | ||
|---|---|---|---|---|---|
| Branch coverage | branch_coverage | On each line of code containing some boolean expressions, the branch coverage simply answers the following question: 'Has each boolean expression been evaluated both to true and false?'. This is the density of possible branches in flow control structures that have been followed.
| |||
| Coverage | coverage | It is a mix of Line coverage and Branch coverage. Its goal is to provide an even more accurate answer to the following question: 'How much of the source code has been covered by the unit tests?".
| |||
| Line coverage | line_coverage | On a given line of code, Line coverage simply answers the following question: 'Has this line of code been executed during the execution of the unit tests?'. Tis is the density of covered lines:
|
Asserts Counted
Asserts per Test
| Metric | Key | Description | Supported by | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Complexity | complexity | The Cyclomatic Complexity is...
| All | |||||||||||
| Lines | lines | Number of carriage returns. | All | |||||||||||
| Paragraph | xxxx | blabla | Cobol | |||||||||||
| XXX | xxxx | blabla | All but Cobol |

