{{title}}
{% if description %}
{{description}}
{% endif %}
{% if tester %}
执行人: {{tester}}
{% endif %}
概要: 执行总数: {{run_num}} 通过: {{pass_num}} 失败: {{fail_num}} 出错: {{error_num}} 跳过: {{skipped_num}}
开始时间: {{start_at}} 结束时间: {{end_at}} 耗时: {{duration}}s
序号 | 用例 | 总数 | 通过 | 失败 | 出错 |
{% for name, test_class in test_classes.items() %}
{{name}} | {{test_class.total}} | {{test_class.pass_num}} | {{test_class.fail_num}} | {{test_class.error_num}} |
{% for test in test_class['test_cases'] %}
{{test.sn}} | {{test.name}} | {{test.status}}
{{test.exec_info}} |
{% endfor %}
{% endfor %}