Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CROSSVERSION (0.04 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-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)
  3. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

            projectFoldersWithFunctionalTests.forEach {
                assertFalse(
                    containsSrcFileWithString(
                        File(it, "src/integTest"),
                        "CrossVersion",
                        listOf("package org.gradle.testkit", "CrossVersionPerformanceTest"),
                    ),
                )
            }
        }
    
        @Test
        fun long_ids_are_shortened() {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 16 01:27:05 UTC 2025
    - 14.6K bytes
    - Viewed (0)
Back to top