Interface UnifiedTestExtension
public interface UnifiedTestExtension
Interface for UnifiedTest extensions that can be invoked during test execution lifecycle.
Extensions can provide additional functionality like custom reporting or data processing.
-
Method Summary
Modifier and TypeMethodDescriptionvoidafterTestExecution(org.gradle.api.Project project, org.gradle.api.tasks.testing.Test testTask) Called after test execution completes.voidconfigureTestTask(org.gradle.api.tasks.testing.Test testTask) Configure a test task with UnifiedTest settings.
-
Method Details
-
afterTestExecution
void afterTestExecution(org.gradle.api.Project project, org.gradle.api.tasks.testing.Test testTask) Called after test execution completes. Implementations can perform post-test processing like generating reports or exporting data.- Parameters:
project- the Gradle projecttestTask- the test task that was executed
-
configureTestTask
void configureTestTask(org.gradle.api.tasks.testing.Test testTask) Configure a test task with UnifiedTest settings.- Parameters:
testTask- The test task to configure
-