
autobahntestsuite.templates.testrun.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of autobahntestsuite-maven-plugin Show documentation
Show all versions of autobahntestsuite-maven-plugin Show documentation
Maven plugin which allows to run the Autobahn Testsuite as part of
the build.
The newest version!
{% extends "base.html" %}
{% block inner %}
Testrun
Test / Testees:
{% for testee in testees %}
{{ testee.name }}
{% endfor %}
{% for result in testresults %}
{{ result.index }}
{% for testee in testees %}
{% if result.results[testee.name].passed %}
Pass
{% else %}
Fail
{% endif %}
({{ result.results[testee.name].duration|round|int }} ms)
{% endfor %}
{% endfor %}
{% endblock %}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy