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 %}
{% 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 %}
Lines:
{{info.lines.exec}} of {{info.lines.total}}, {{info.lines.excluded}} excluded
{{info.lines.coverage}}%
Functions:
{{info.functions.exec}} of {{info.functions.total}}, {{info.functions.excluded}} excluded
{{info.functions.coverage}}%
Branches:
{{info.branches.exec}} of {{info.branches.total}}, {{info.branches.excluded}} excluded
{{info.branches.coverage}}%
{% if SHOW_CONDITION_COVERAGE %}
Conditions:
{{info.conditions.exec}} of {{info.conditions.total}}, {{info.conditions.excluded}} excluded
{{info.conditions.coverage}}%
{% endif %}
{% if SHOW_DECISION %}
Decisions:
{{info.decisions.exec}} of {{info.decisions.total}}
{{info.decisions.coverage}}%
{% endif %}
{% if SHOW_CALLS %}
Calls:
{{info.calls.exec}} of {{info.calls.total}}, {{info.calls.excluded}} excluded
{{info.calls.coverage}}%
{% endif %}