UNBOUND REPORT

Overview

Suites
{{ suite_stats['total'] }} Total
{{ suite_stats['passed'] }} Passed
{{ suite_stats['failed'] }} Failed
{{ suite_stats['skipped'] }} Skipped
Tests
{{ test_stats['total'] }} Total
{{ test_stats['passed'] }} Passed
{{ test_stats['failed'] }} Failed
{{ test_stats['skipped'] }} Skipped
Test Outcomes Summary
Trend of Test Results

Suites

{% for suite in suite_data %}
{{ suite['name']}} {{suite['duration']}} s {% if suite['status'] == 'PASS' %} Pass {% elif suite['status'] == 'FAIL' %} FAIL {% elif suite['status'] == 'SKIP' %} SKIP {% endif %}
{% if suite['setup'] != {} %}
{% if suite['setup']['status'] == 'PASS' %}
{% elif suite['setup']['status'] == 'FAIL' %}
{% elif suite['setup']['status'] == 'SKIP' %}
{% endif %}

{{suite['setup']['name']}} {{suite['setup']['duration']}} s

{{suite['setup']['starttime']}}

{% endif %} {% for test in suite['tests'] %}
{% if test['status'] == 'PASS' %}
{% elif test['status'] == 'FAIL' %}
{% elif test['status'] == 'SKIP' %}
{% else %}
{% endif %}
{{test['name']}} {{test['duration']}} s

{{test['starttime']}}

{% for keyword in test['keywords'] %} {{ render_keywords(keyword) }} {% endfor %}
{% endfor %} {% if suite['teardown'] != {} %}
{% if suite['teardown']['status'] == 'PASS' %}
{% elif suite['teardown']['status'] == 'FAIL' %}
{% elif suite['teardown']['status'] == 'SKIP' %}
{% endif %}

{{suite['teardown']['name']}} {{suite['teardown']['duration']}} s

{{suite['teardown']['starttime']}}

{% endif %}
{% endfor %} {% if suite_data|length == 0 %}

No Defects found

{% endif %}

Defects

{% for error, tests in error_stats.items() %}
{{ error }} FAIL
{% for test in tests %}
{% if test['status'] == 'PASS' %}
{% elif test['status'] == 'FAIL' %}
{% elif test['status'] == 'SKIP' %}
{% else %}
{% endif %}
{{test['name']}} {{test['duration']}} s

{{test['starttime']}}

{% for keyword in test['keywords'] %} {{ render_keywords(keyword) }} {% endfor %}
{% endfor %}
{% endfor %} {% if error_stats|length == 0 %}

No Defects found

{% endif %}
Overview
Suites
Defects