All Downloads are FREE. Search and download functionalities are using the official Maven repository.

autobahntestsuite.templates.testresult.html Maven / Gradle / Ivy

The newest version!
{% extends "base.html" %}
{% block inner %}

   

{% if testresult.passed %}

Pass ({{ testresult.duration | round(1) }} ms)

{% else %}

Fail

{% endif %} {{ testresult.testeeName }} - Test Case {{ testresult.caseName }}


Description

{{ testresult.description|safe }}

{{ testresult.expectation }}


Expected

{% if testresult.expected %} {% for sid in testresult.expected %} {% if testresult.expected[sid]|length > 0 %} {% for event in testresult.expected[sid] %} {% endfor %} {% else %} {% endif %} {% endfor %} {% else %} {% endif %}
Session Index Session ID Topic Payload
0 {{ sid }}
{{ event[0] }}
{{ event[1] }}
Nothing.

Observed

{% if testresult.observed %} {% for sid in testresult.observed %} {% if testresult.observed[sid]|length > 0 %} {% for event in testresult.observed[sid] %} {% endfor %} {% else %} {% endif %} {% endfor %} {% else %} {% endif %}
Session Index Session ID Topic Payload
0 {{ sid }}
{{ event[0] }}
{{ event[1] }}
Nothing.

Log

{% for line in testresult.log %} {% endfor %}
Timestamp Session Index Session ID Message
{{ line[0] | round(6) }} {% if line[1] is none %} {% else %}{{ line[1] }}{% endif %} {% if line[2] is none %} {% else %}{{ line[2] }}{% endif %} {{ line[3] }}

{% endblock %}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy