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 Type
    Method
    Description
    void
    afterTestExecution(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 project
      testTask - the test task that was executed