Package com.atlassian.bamboo.capture
Interface WebTestListener
- All Known Implementing Classes:
FFMpegSuiteListener
public interface WebTestListener
An observer of a
Test
.-
Method Summary
Modifier and TypeMethodDescriptionvoid
suiteFinished
(WebTestDescription suiteDescription) Called when the whole web test suite is going finishing.void
suiteStarted
(WebTestDescription suiteDescription) Called when the whole web test suite is going to start.void
testError
(WebTestDescription description, Throwable error) Called when test ends with an errorvoid
testFailure
(WebTestDescription description, Throwable failure) Called on test finished with an assertion failure.void
testFinished
(WebTestDescription description) Called on finished web test.void
testStarted
(WebTestDescription description) Called on start of a single web test.
-
Method Details
-
suiteStarted
Called when the whole web test suite is going to start.- Parameters:
suiteDescription
- description of the whole suite
-
suiteFinished
Called when the whole web test suite is going finishing.- Parameters:
suiteDescription
- description of the whole suite
-
testStarted
Called on start of a single web test.- Parameters:
description
- test description
-
testFinished
Called on finished web test.- Parameters:
description
- test description
-
testError
Called when test ends with an error- Parameters:
description
- test descriptionerror
- error
-
testFailure
Called on test finished with an assertion failure.- Parameters:
description
- test descriptionfailure
- failure
-