{# -*- engine: jinja -*- #}
{% if (COVERAGE_MED != LINE_COVERAGE_MED) or (COVERAGE_HIGH != LINE_COVERAGE_HIGH) %} {% endif %} {% if (COVERAGE_MED != BRANCH_COVERAGE_MED) or (COVERAGE_HIGH != BRANCH_COVERAGE_HIGH) %} {% endif %}
Directory: {{info.get_directory()}}
Date: {{info.date}}
Coverage: low: ≥ 0% {% if COVERAGE_MED != COVERAGE_HIGH %} medium: ≥ {{COVERAGE_MED}}% {% endif %} {% if COVERAGE_HIGH < 100 %} high: ≥ {{COVERAGE_HIGH}}% {% else %} high: = 100% {% endif %}
Lines: low: ≥ 0% {% if LINE_COVERAGE_MED != LINE_COVERAGE_HIGH %} medium: ≥ {{LINE_COVERAGE_MED}}% {% endif %} {% if LINE_COVERAGE_HIGH < 100 %} high: ≥ {{LINE_COVERAGE_HIGH}}% {% else %} high: = 100% {% endif %}
Branches: low: ≥ 0% {% if BRANCH_COVERAGE_MED != BRANCH_COVERAGE_HIGH %} medium: ≥ {{BRANCH_COVERAGE_MED}}% {% endif %} {% if BRANCH_COVERAGE_HIGH < 100 %} high: ≥ {{BRANCH_COVERAGE_HIGH}}% {% else %} high: = 100% {% endif %}
{% if not EXCLUDE_CONDITIONS %} {% endif %} {% if SHOW_DECISION %} {% endif %} {% if not EXCLUDE_CALLS %} {% endif %}
Exec Total Coverage
Lines: {{info.lines.exec}} {{info.lines.total}} {{info.lines.coverage}}%
Functions: {{info.functions.exec}} {{info.functions.total}} {{info.functions.coverage}}%
Branches: {{info.branches.exec}} {{info.branches.total}} {{info.branches.coverage}}%
Conditions: {{info.conditions.exec}} {{info.conditions.total}} {{info.conditions.coverage}}%
Decisions: {{info.decisions.exec}} {{info.decisions.total}} {{info.decisions.coverage}}%
Calls: {{info.calls.exec}} {{info.calls.total}} {{info.calls.coverage}}%