Coverage:
low: ≥ 0%
{% if COVERAGE_MED != COVERAGE_HIGH %}
medium: ≥ {{COVERAGE_MED}}%
{% endif %}
{% if COVERAGE_HIGH < 100 %}
high: ≥ {{COVERAGE_HIGH}}%
{% else %}
high: = 100%
{% endif %}
{% if (COVERAGE_MED != LINE_COVERAGE_MED) or (COVERAGE_HIGH != LINE_COVERAGE_HIGH) %}
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 %}
{% endif %}
{% if (COVERAGE_MED != BRANCH_COVERAGE_MED) or (COVERAGE_HIGH != LINE_COVERAGE_HIGH) %}
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 %}
{% endif %}
{% if SHOW_DECISION and decisions.unchecked > 0 %}
Warnings:
{{decisions.unchecked}} unchecked decisions!
{% endif %}
Lines:
{{lines.exec}} of {{lines.total}}, {{lines.excluded}} excluded
{{lines.coverage}}%
Functions:
{{functions.exec}} of {{functions.total}}, {{functions.excluded}} excluded
{{functions.coverage}}%
Branches:
{{branches.exec}} of {{branches.total}}, {{branches.excluded}} excluded
{{branches.coverage}}%
{% if SHOW_CONDITION_COVERAGE %}
Conditions:
{{conditions.exec}} of {{conditions.total}}, {{conditions.excluded}} excluded
{{conditions.coverage}}%
{% endif %}
{% if SHOW_DECISION %}
Decisions:
{{decisions.exec}} of {{decisions.total}}
{{decisions.coverage}}%
{% endif %}
{% if SHOW_CALLS %}
Calls:
{{calls.exec}} of {{calls.total}}, {{calls.excluded}} excluded
{{calls.coverage}}%
{% endif %}