{# -*- engine: jinja -*- #}
| Directory: |
{{info.get_directory()}} |
| File: |
{{filename}} |
| Date: |
{{info.date}} |
{% if SHOW_DECISION and decisions.unchecked > 0 %}
| Warnings: |
{{decisions.unchecked}} unchecked decisions! |
{% endif %}
|
Coverage |
Exec |
Excl |
Total |
| Lines: |
{{lines.coverage}}% |
{{lines.exec}} |
{{lines.excluded}} |
{{lines.total}} |
| Functions: |
{{functions.coverage}}% |
{{functions.exec}} |
{{functions.excluded}} |
{{functions.total}} |
| Branches: |
{{branches.coverage}}% |
{{branches.exec}} |
{{branches.excluded}} |
{{branches.total}} |
{% if SHOW_CONDITION_COVERAGE %}
| Conditions: |
{{conditions.coverage}}% |
{{conditions.exec}} |
{{conditions.excluded}} |
{{conditions.total}} |
{% endif %}
{% if SHOW_DECISION %}
| Decisions: |
{{decisions.coverage}}% |
{{decisions.exec}} |
- |
{{decisions.total}} |
{% endif %}
{% if SHOW_CALLS %}
| Calls: |
{{calls.coverage}}% |
{{calls.exec}} |
{{calls.excluded}} |
{{calls.total}} |
{% endif %}