Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for IntegTest (0.04 sec)

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

    /**
     * This task scans the main source set and findd samples in javadoc with `class='autoTested'`,
     * then generates a subclass of AbstractAutoTestedSamplesTest for each class including samples and adds them to the integTest.
     *
     * For example, we have two classes ABC.java and XYZ.groovy that include `class='autoTested'`,
     * there will be two files generated: `ABCAutoTestedSamplesTest.groovy` and `XYZAutoTestedSamplesTest.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/cleanup/src/main/kotlin/gradlebuild/cleanup/services/CachesCleaner.kt

            // Remove scripts caches
            fileSystemOperations.removeCachedScripts(workerDir.dir("caches").asFile)
    
            // Remove script caches from TestKit integTest temp dir
            // location defined in TempTestKitDirProvider, copied here
            val testKitTmpDir = File(File(System.getProperty("java.io.tmpdir")), ".gradle-test-kit-${System.getProperty("user.name")}")
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Jun 28 08:29:28 UTC 2024
    - 4.2K bytes
    - Viewed (1)
  3. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

            })
        }
    }
    
    fun addCompileAllTasks() {
        tasks.register("compileAll") {
            description = "Compile all source code, including main, test, integTest, crossVersionTest, testFixtures, etc."
            val compileTasks = project.tasks.matching {
                it is JavaCompile || it is GroovyCompile || it is KotlinCompile
            }
            dependsOn(compileTasks)
        }
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Dec 19 06:44:41 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  4. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

            }
        }
    }
    
    codenarc {
        config = configFile("codenarc.xml")
        reportFormat = "console"
    }
    
    tasks.withType<CodeNarc>().configureEach {
        if (name.contains("IntegTest")) {
            config = configFile("codenarc-integtests.xml")
        }
    }
    
    val SourceSet.allGroovy: SourceDirectorySet
        get() = the<GroovySourceDirectorySet>()
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Oct 01 11:57:43 UTC 2025
    - 9.3K bytes
    - Viewed (0)
Back to top