- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for crossVersion (0.05 sec)
-
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) -
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) -
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) -
.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)