|
Groovy Documentation | |||||||
| FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD | |||||||
public interface TestListener
Interface for listening to test execution. The intent is to be framework agnostic. Currently this interface can support feedback from JUnit and TestNG tests.
| Method Summary | |
|---|---|
void
|
afterSuite(TestDescriptor suite, TestResult result)
Called after a test suite is finished. |
void
|
afterTest(TestDescriptor testDescriptor, TestResult result)
Called after a test is finished. |
void
|
beforeSuite(TestDescriptor suite)
Called before a test suite is started. |
void
|
beforeTest(TestDescriptor testDescriptor)
Called before a test is started. |
| Method Detail |
|---|
public void afterSuite(TestDescriptor suite, TestResult result)
suite - The suite whose tests have finished being executed.result - The aggregate result for the suite.
public void afterTest(TestDescriptor testDescriptor, TestResult result)
testDescriptor - The test which has finished executing.result - The test result.
public void beforeSuite(TestDescriptor suite)
suite - The suite whose tests are about to be executed.
public void beforeTest(TestDescriptor testDescriptor)
testDescriptor - The test which is about to be executed.
Gradle API 1.5