public class

FuncTestTimingsListener

extends Object
implements WebTestListener
java.lang.Object
   ↳ com.atlassian.jira.functest.framework.dump.FuncTestTimingsListener

Class Overview

Listens for suite events and dumps timings to a file

Summary

Public Constructors
FuncTestTimingsListener()
Public Methods
void 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 test, Throwable t)
Called when test ends with an error
void testFailure(WebTestDescription test, Throwable t)
Called on test finished with an assertion failure.
void testFinished(WebTestDescription test)
Called on finished web test.
void testStarted(WebTestDescription test)
Called on start of a single web test.
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.atlassian.jira.functest.framework.WebTestListener

Public Constructors

public FuncTestTimingsListener ()

Public Methods

public void suiteFinished (WebTestDescription suiteDescription)

Called when the whole web test suite is going finishing.

Parameters
suiteDescription description of the whole suite

public void suiteStarted (WebTestDescription suiteDescription)

Called when the whole web test suite is going to start.

Parameters
suiteDescription description of the whole suite

public void testError (WebTestDescription test, Throwable t)

Called when test ends with an error

Parameters
test test description
t error

public void testFailure (WebTestDescription test, Throwable t)

Called on test finished with an assertion failure.

Parameters
test test description
t failure

public void testFinished (WebTestDescription test)

Called on finished web test.

Parameters
test test description

public void testStarted (WebTestDescription test)

Called on start of a single web test.

Parameters
test test description