{# -*- engine: jinja -*- #} {% for function_batch in all_functions | batch(10000) %}
Function (File:Line) | Call count | {% if not EXCLUDE_FUNCTION_COVERAGE %}Line coverage | Branch coverage | Condition coverage | {% endif %}Block coverage |
---|---|---|---|---|---|
{{ entry["name"] }} ({{ entry["filename"] }}:{{ 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"] }}% | {#- -#}