Class UnifiedTestConfig
java.lang.Object
io.github.mov2day.unifiedtest.extension.UnifiedTestConfig
Configuration class for UnifiedTest plugin.
Provides settings for test execution and report generation.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidconfigureTestTask(org.gradle.api.tasks.testing.Test testTask) Configure a test task with UnifiedTest settings.org.gradle.api.provider.Property<Boolean> Whether the plugin is enabled.org.gradle.api.provider.Property<Boolean> Whether to generate Allure reports.org.gradle.api.provider.Property<Boolean> Whether to generate HTML reports.org.gradle.api.provider.Property<String> Directory where test reports will be generated.
-
Constructor Details
-
UnifiedTestConfig
@Inject public UnifiedTestConfig(org.gradle.api.model.ObjectFactory objects)
-
-
Method Details
-
getEnabled
Whether the plugin is enabled. -
getReportDir
Directory where test reports will be generated. -
getGenerateHtmlReport
Whether to generate HTML reports. -
getGenerateAllureReport
Whether to generate Allure reports. -
configureTestTask
public void configureTestTask(org.gradle.api.tasks.testing.Test testTask) Configure a test task with UnifiedTest settings.- Parameters:
testTask- The test task to configure
-