{# -*- engine: jinja -*- #} {% if function_list %}
| Function (Line) | Call count{% if not EXCLUDE_FUNCTION_COVERAGE %} | Line coverage | Branch coverage | Condition coverage{% endif %} | Block coverage | 
|---|---|---|---|---|---|
| {{ entry["name"] }} (line {{ entry["line"] }}){#- #} | {%- if entry["excluded"] %}excluded {%- else %} {%- if entry["count"] == 0 %}not called {%- else %}called {{ entry["count"] }} time{% if entry["count"] > 1 %}s{% endif %} {%- endif -%} {%- endif -%} {#- #}{%- if not EXCLUDE_FUNCTION_COVERAGE %} {#- #} | {{ entry["line_coverage"] }}%{#- #} | {{ entry["branch_coverage"] }}%{#- #} | {{ entry["condition_coverage"] }}%{%- endif %} {#- #} | {{ entry["blocks"] }}%{#- -#} |