{# -*- engine: jinja -*- #} {% if function_list %}
List of functions {% if not EXCLUDE_FUNCTION_COVERAGE %} {% endif %} {% if info.single_page %} {% set anchor_prefix = html_filename + "|" %} {% else %} {% set anchor_prefix = '' %} {% endif %} {% for entry in function_list %} {#- #} {#- #} {%- if not EXCLUDE_FUNCTION_COVERAGE %} {#- #} {#- #} {#- #} {%- endif %} {#- #} {#- -#} {% endfor %}
Function (Line) Call countLine coverage Branch coverage Condition coverageBlock 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 -%} {#- #}{{ entry["line_coverage"] }}%{{ entry["branch_coverage"] }}%{{ entry["condition_coverage"] }}%{{ entry["blocks"] }}%
{% endif -%}