{% extends 'layout.twig' %} {% block title %}Test: {{ test.title }}{% endblock %} {% block content %}

{{ test.title }}

{{ test.description }}


Test results:

Add new result

{% if test.results | length > 0 %} {% for r in test.results %} {% endfor %}
Component Benchmark Scoring Avg. Min. Max.
{{ test.component().name }} {{ r.benchmark().name }} {{ r.benchmark().scoring | capitalize }} {{ r.average }} {{ r.minimum ? r.minimum : 'N/a' }} {{ r.maximum ? r.maximum : 'N/a' }}
{% else %}

There are no results associated with this test.

{% endif %}
{% endblock %}