Test Time: {{ timestamp }}
| Activity Name | Visit Count |
|---|---|
| {% if activity in tested_activities %} {% else %} {% endif %} {{ activity }} | {% if activity in activity_count_history %} {{ activity_count_history[activity] }} times {% else %} 0 times {% endif %} |
| No activities found | |
| Type | Time | Exception | Process | Details |
|---|---|---|---|---|
| CRASH | {{ crash.time }} | {{ crash.exception_type }} | {{ crash.process }} | |
Stack Trace:{{ crash.stack_trace }}
|
||||
| ANR | {{ anr.time }} | {{ anr.reason }} | {{ anr.process }} | |
ANR Details:{{ anr.trace }}
|
||||
| Index | Property Name | Precondition Satisfied | Executed | Fails | Errors |
|---|---|---|---|---|---|
| {{ loop.index }} | {{ property_name }} | {{ test_result.precond_satisfied|default(0) }} | {{ test_result.executed|default(0) }} | {{ test_result.fail|default(0) }} | {{ test_result.error|default(0) }} |
This section shows which test directories contain properties with failures or errors. Use this information to locate the original test reports for detailed error analysis.
| Index | Property Name | Source Directories |
|---|---|---|
| {{ loop.index }} | {{ property_name }} |
{% set max_visible = 3 %}
{% if source_dirs|length <= max_visible %}
{% for dir_name in source_dirs %}
{{ dir_name }}
{% endfor %}
{% else %}
{% for dir_name in source_dirs[:max_visible] %}
{{ dir_name }}
{% endfor %}
{% endif %}
|