Class AbstractWebTestListener
java.lang.Object
com.atlassian.jira.functest.framework.AbstractWebTestListener
- All Implemented Interfaces:
WebTestListener
Abstract, no-op implementation of
WebTestListener. Subclasses
only need to override required methods.- Since:
- v4.4
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidsuiteFinished(WebTestDescription suiteDescription) Called when the whole web test suite is going finishing.voidsuiteStarted(WebTestDescription suiteDescription) Called when the whole web test suite is going to start.voidtestError(WebTestDescription description, Throwable error) Called when test ends with an errorvoidtestFailure(WebTestDescription description, Throwable failure) Called on test finished with an assertion failure.voidtestFinished(WebTestDescription description) Called on finished web test.voidtestStarted(WebTestDescription description) Called on start of a single web test.
-
Constructor Details
-
AbstractWebTestListener
public AbstractWebTestListener()
-
-
Method Details
-
suiteStarted
Description copied from interface:WebTestListenerCalled when the whole web test suite is going to start.- Specified by:
suiteStartedin interfaceWebTestListener- Parameters:
suiteDescription- description of the whole suite
-
suiteFinished
Description copied from interface:WebTestListenerCalled when the whole web test suite is going finishing.- Specified by:
suiteFinishedin interfaceWebTestListener- Parameters:
suiteDescription- description of the whole suite
-
testStarted
Description copied from interface:WebTestListenerCalled on start of a single web test.- Specified by:
testStartedin interfaceWebTestListener- Parameters:
description- test description
-
testFinished
Description copied from interface:WebTestListenerCalled on finished web test.- Specified by:
testFinishedin interfaceWebTestListener- Parameters:
description- test description
-
testError
Description copied from interface:WebTestListenerCalled when test ends with an error- Specified by:
testErrorin interfaceWebTestListener- Parameters:
description- test descriptionerror- error
-
testFailure
Description copied from interface:WebTestListenerCalled on test finished with an assertion failure.- Specified by:
testFailurein interfaceWebTestListener- Parameters:
description- test descriptionfailure- failure
-