{{ title }}

{% for attribute in report_attrs %} {% endfor %}
{{ attribute[0] }} {% if attribute[0] == 'Status' %}
{% if attribute[1]['pass'] %}Passed: {{ attribute[1]['pass'] }}{% endif %} {% if attribute[1]['fail'] %}Failed: {{ attribute[1]['fail'] }}{% endif %} {% if attribute[1]['error'] %}Errors: {{ attribute[1]['error'] }}{% endif %} {% if attribute[1]['skip'] %}Skipped: {{ attribute[1]['skip'] }}{% endif %} {% if not attribute[1]['total'] %}None{% endif %}
{% else %} {{ attribute[1] | safe }} {% endif %}
{{ report['count'] }} Total Tests
{{ report['pass'] }} Passed
{{ report['fail'] }} Failed
{{ report['error'] }} Errors
{{ report['skip'] }} Skipped
Display Results:
{% for test_class in report['class_testcases'] %} {% for test_case in test_class['fun_testcases'] %} {% endfor %} {% endfor %}
Test Group / Test Case Count / Duration Pass Fail Error Skip Action
{{ test_class['desc'] }} {{ test_class['count'] }} {{ test_class['pass'] }} {{ test_class['fail'] }} {{ test_class['error'] }} {{ test_class['skip'] }}
{{ test_case['duration'] }}
Total Summary {{ report['count'] }} {{ report['pass'] }} {{ report['fail'] }} {{ report['error'] }} {{ report['skip'] }}