@import act.test.Scenario
@import act.test.Interaction
@args ListTest Report
@if(scenario.description) {
@scenario.description
} else {
@scenario.name.toUpperCase()
}
@if(!scenario.status.pass()) {
@if(scenario.source) {
Re-run scenario >
} else {
Re-run scenario >
}
}
@if(!scenario.status.pass() && null != scenario.errorMessage) {
@scenario.causeStackTrace()
}
@for (Interaction interaction: scenario.interactions) {
}
actframework-@act.Act.VERSION.getVersion()
@interaction.causeStackTrace()
}
}