Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CrossVersion (0.06 sec)

  1. build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts

        id("gradlebuild.jvm-compile")
    }
    
    val sourceSet = sourceSets.create("${TestType.CROSSVERSION.prefix}Test")
    jvmCompile {
        addCompilationFrom(sourceSet)
    }
    addDependenciesAndConfigurations(TestType.CROSSVERSION.prefix)
    createQuickFeedbackTasks()
    createAggregateTasks(sourceSet)
    configureIde(TestType.CROSSVERSION)
    configureTestFixturesForCrossVersionTests()
    
    fun configureTestFixturesForCrossVersionTests() {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Sep 05 02:31:24 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/IntegrationTest.kt

     * been using the term 'integration test'.
     */
    @CacheableTask
    abstract class IntegrationTest : DistributionTest() {
    
        override val prefix = if (name.contains("CrossVersion")) "crossVersion" else "integ"
    
        @InputDirectory
        @PathSensitive(PathSensitivity.RELATIVE)
        val samplesDir = gradleInstallationForTest.gradleSnippetsDir
    
        override fun setClasspath(classpath: FileCollection) {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2K bytes
    - Viewed (0)
  3. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/testing/TestType.kt

    
    enum class TestType(val prefix: String, val executers: List<String>) {
        INTEGRATION("integ", listOf("embedded", "forking", "noDaemon", "parallel", "configCache", "isolatedProjects")),
        CROSSVERSION("crossVersion", listOf("embedded", "forking"))
    }
    
    
    fun Test.includeSpockAnnotation(fqcn: String) {
        systemProperties.compute("include.spock.annotation") { _, oldValue ->
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top