Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for generateAutoTestedSamplesTest (0.16 sec)

  1. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/GenerateAutoTestedSamplesTestTask.kt

        @get:InputFiles
        @get:PathSensitive(PathSensitivity.RELATIVE)
        abstract val mainSources: ConfigurableFileCollection
    
        @get:Input
        abstract val generateAutoTestedSamplesTest: Property<Boolean>
    
        @get:OutputDirectory
        abstract val outputDir: DirectoryProperty
    
        init {
            outputDir.convention(project.layout.buildDirectory.dir("generated/sources/autoTested/groovy"))
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Dec 19 06:44:41 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

        if (testType == TestType.INTEGRATION && groovySourceDir != null) {
            val autoTestedSamplesTest = tasks.register<GenerateAutoTestedSamplesTestTask>("generateAutoTestedSamplesTest") {
                mainSources.from(main.java)
                generateAutoTestedSamplesTest.set(project.the<IntegrationTestExtension>().generateDefaultAutoTestedSamplesTest)
            }
    
            tasks.named<GroovyCompile>("compileIntegTestGroovy").configure {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Aug 18 16:39:23 UTC 2025
    - 12.8K bytes
    - Viewed (0)
Back to top