Package org.citrusframework.report
Interface TestActionListener
public interface TestActionListener
Listener invoked on test action execution with success and failure.
- Since:
- 1.3
- Author:
- Christoph Deppisch
-
Method Summary
Modifier and TypeMethodDescriptionvoidonTestActionFinish(TestCase testCase, TestAction testAction) Invoked when test gets finishedvoidonTestActionSkipped(TestCase testCase, TestAction testAction) Invoked when test is skippedvoidonTestActionStart(TestCase testCase, TestAction testAction) Invoked when test gets started
-
Method Details
-
onTestActionStart
Invoked when test gets started- Parameters:
testCase-testAction-
-
onTestActionFinish
Invoked when test gets finished- Parameters:
testAction-
-
onTestActionSkipped
Invoked when test is skipped- Parameters:
testAction-
-