rythm.~e2e.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of act-e2e Show documentation
Show all versions of act-e2e Show documentation
Support end to end test of ActFramework application
@import act.e2e.Scenario
@import act.e2e.Interaction
@args List scenarios
@render(head)
End To End Test Result
@for(Scenario scenario: scenarios) {
@scenario.name.toUpperCase()
@if(scenario.description) {
@scenario.description
}
@for (Interaction interaction: scenario.interactions) {
@if(scenario.pass(interaction)) {
- [pass] @interaction.description.capFirst()
} else {
- [fail] @interaction.description.capFirst()
}
}
}
[email protected]()