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: |
{% if summary.countTestsFailed > 0 %}
{{ summary.countTestsFailed }} |
{% else %}
{{ summary.countTestsFailed }} |
{% endif %}
|
|
Tests not performed: |
{% if summary.countTestsFailed > 0 %}
{{ summary.countTestsNotYetPerformed }} |
{% else %}
{{ summary.countTestsNotYetPerformed }} |
{% endif %}
|
|