| {{ 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 %}
|
|---|
| 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'] }} | |