{# -*- engine: jinja -*- #}
  
    
      | Directory: | {{info.get_directory()}} | 
    
      | 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 != BRANCH_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 %}
  
 
  
    
      |  | Exec | Total | Coverage | 
    
      | Lines: | {{info.lines.exec}} | {{info.lines.total}} | {{info.lines.coverage}}% | 
    
      | Functions: | {{info.functions.exec}} | {{info.functions.total}} | {{info.functions.coverage}}% | 
    
      | Branches: | {{info.branches.exec}} | {{info.branches.total}} | {{info.branches.coverage}}% | 
    {% if not EXCLUDE_CONDITIONS %}
    
      | Conditions: | {{info.conditions.exec}} | {{info.conditions.total}} | {{info.conditions.coverage}}% | 
    {% endif %}
    {% if SHOW_DECISION %}
    
      | Decisions: | {{info.decisions.exec}} | {{info.decisions.total}} | {{info.decisions.coverage}}% | 
    {% endif %}
    {% if not EXCLUDE_CALLS %}
    
      | Calls: | {{info.calls.exec}} | {{info.calls.total}} | {{info.calls.coverage}}% | 
    {% endif %}