Package com.consol.citrus.report
Class TestActionListeners
- java.lang.Object
-
- com.consol.citrus.report.TestActionListeners
-
- All Implemented Interfaces:
TestActionListenerAware
public class TestActionListeners extends Object implements TestActionListenerAware
Class broadcasting test action events to all available test action listeners injected by Spring's IoC container.- Since:
- 1.3
- Author:
- Christoph Deppisch
-
-
Constructor Summary
Constructors Constructor Description TestActionListeners()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddTestActionListener(TestActionListener listener)Adds a new test action listener.List<TestActionListener>getTestActionListeners()Obtains the testActionListeners.voidonTestActionFinish(TestCase testCase, TestAction testAction)voidonTestActionSkipped(TestCase testCase, TestAction testAction)voidonTestActionStart(TestCase testCase, TestAction testAction)
-
-
-
Method Detail
-
onTestActionFinish
public void onTestActionFinish(TestCase testCase, TestAction testAction)
-
onTestActionSkipped
public void onTestActionSkipped(TestCase testCase, TestAction testAction)
-
onTestActionStart
public void onTestActionStart(TestCase testCase, TestAction testAction)
-
addTestActionListener
public void addTestActionListener(TestActionListener listener)
Description copied from interface:TestActionListenerAwareAdds a new test action listener.- Specified by:
addTestActionListenerin interfaceTestActionListenerAware
-
getTestActionListeners
public List<TestActionListener> getTestActionListeners()
Obtains the testActionListeners.- Returns:
-
-