Resource Type: TestReport
ID: {{TestReport.id}}
Name: {{TestReport.name}}
Status: {{TestReport.status}}
TestScript: {{TestReport.testScript}}
Result: {{TestReport.result}}
{% if TestReport.score %}Score: {{TestReport.score}}
{% endif %} {% if TestReport.tester %}Tester: {{TestReport.tester}}
{% endif %} {% if TestReport.issued %}Issued: {{TestReport.issued}}
{% endif %} {% if TestReport.participant %} Participant: {% for participant in TestReport.participant %} {% endfor %}
Type URI Display
{{participant.type}} {{participant.uri}} {% if participant.display %} {{ participant.display }} {% else %} N/A {% endif %}
{% endif %}


{% if TestReport.setup %}

Setup

{% for action in TestReport.setup.action %} {% if action.operation %} {% elsif action.assert %} {% endif %} {% endfor %}
Action ID Result Message Details Requirements
New Action
Operation {% if action.operation.id %}{{ action.operation.id }}{% else %} N/A {% endif %} {{ action.operation.result }} {% if action.operation.message %}{{ action.operation.message }}{% else %} N/A {% endif %} {% if action.operation.detail %}{{ action.operation.detail }}{% else %} N/A {% endif %} N/A
Assert {% if action.assert.id %}{{ action.assert.id }}{% else %} N/A {% endif %} {{ action.assert.result }} {% if action.assert.message %}{{ action.assert.message }}{% else %} N/A {% endif %} {% if action.assert.detail %}{{ action.assert.detail }}{% else %} N/A {% endif %} {% if action.assert.requirement %} {% for requirement in action.operation.requirement %} {% if requirement.link %}{{ requirement.link }}{% else %} N/A {% endif %} {% endfor %} {% else %} N/A {% endif %}
{% endif %} {% if TestReport.test %}

Tests

{% for test in TestReport.test %}
{{ test.name }}:
{{ test.description }}
{% for action in test.action %} {% if action.operation %} {% elsif action.assert %} {% endif %} {% endfor %}
Action ID Result Message Details Requirements
New Action
Operation {% if action.operation.id %}{{ action.operation.id }}{% else %} N/A {% endif %} {{ action.operation.result }} {% if action.operation.message %}{{ action.operation.message }}{% else %} N/A {% endif %} {% if action.operation.detail %}{{ action.operation.detail }}{% else %} N/A {% endif %} N/A
Assert {% if action.assert.id %}{{ action.assert.id }}{% else %} N/A {% endif %} {{ action.assert.result }} {% if action.assert.message %}{{ action.assert.message }}{% else %} N/A {% endif %} {% if action.assert.detail %}{{ action.assert.detail }}{% else %} N/A {% endif %} {% if action.assert.requirement %} {% for requirement in action.operation.requirement %} {% if requirement.link %}{{ requirement.link }}{% else %} N/A {% endif %} {% endfor %} {% else %} N/A {% endif %}
{% endfor %} {% endif %} {% if TestReport.teardown %}

Teardown

Operations
{% for action in TestReport.teardown.action %} {% endfor %}
ID Result Message Details
{% if action.operation.id %}{{ action.operation.id }}{% else %} N/A {% endif %} {{ action.operation.result }} {% if action.operation.message %}{{ action.operation.message }}{% else %} N/A {% endif %} {% if action.operation.detail %}{{ action.operation.detail }}{% else %} N/A {% endif %}
{% endif %}