{% if summary.countTestsFailed > 0 %} {% else %} {% endif %} {% if summary.countTestsFailed > 0 %} {% else %} {% endif %}
Tests performed: {{ summary.countTestsPerformed }} Sum of all test durations: {{ "%.03f"|format(summary.totalTestDuration) }} s
Tests succeeded: {{ summary.countTestsSucceeded }} Total runtime of all tests: {{ "%.03f"|format(summary.totalTestRuntime) }} s
Tests failed:{{ summary.countTestsFailed }}{{ summary.countTestsFailed }}
Tests not performed:{{ summary.countTestsNotYetPerformed }}{{ summary.countTestsNotYetPerformed }}
{{- svg|safe -}}
{% for testRecord in testRecords %} {% endfor %}
Test case Enabled Result Duration Description
{{ testRecord.name }} {% if testRecord.enabledState == "enabled_by_user" -%} by user {%- elif testRecord.enabledState == "enabled_in_consequence" -%} automatic {%- else -%} disabled {%- endif %} {{ testRecord.processingState }} {{ "%.3f"|format(testRecord.duration * 1000) }} ms {% if testRecord.description %}{{ testRecord.description }}{% endif %}