Package io.github.mov2day.unifiedtest
Interface UnifiedTestExtension
public interface UnifiedTestExtension
Interface for UnifiedTest extensions that can be invoked after test execution.
Implementations 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.
-
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
-