Package com.consol.citrus.report
Interface TestActionListener
-
public interface TestActionListenerListener invoked on test action execution with success and failure.- Since:
- 1.3
- Author:
- Christoph Deppisch
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonTestActionFinish(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 Detail
-
onTestActionStart
void onTestActionStart(TestCase testCase, TestAction testAction)
Invoked when test gets started- Parameters:
testCase-testAction-
-
onTestActionFinish
void onTestActionFinish(TestCase testCase, TestAction testAction)
Invoked when test gets finished- Parameters:
testAction-
-
onTestActionSkipped
void onTestActionSkipped(TestCase testCase, TestAction testAction)
Invoked when test is skipped- Parameters:
testAction-
-
-