Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for testClassesDirs (0.21 sec)

  1. testing/smoke-ide-test/build.gradle.kts

            }
        }
    }
    
    tasks.register<SmokeIdeTest>("smokeIdeTest") {
        group = "Verification"
        maxParallelForks = 1
        systemProperties["org.gradle.integtest.executer"] = "forking"
        testClassesDirs = smokeIdeTestSourceSet.output.classesDirs
        classpath = smokeIdeTestSourceSet.runtimeClasspath
        dependsOn(unzipIdeStarter)
    }
    
    dependencies {
        ideStarter(libs.gradleIdeStarter)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 18:13:31 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. testing/precondition-tester/build.gradle.kts

            setupPreconditionTesting()
        }
    }
    
    fun Test.setupPreconditionTesting() {
        // We only want to execute our special tests
        // so we override what classes are going to run
        testClassesDirs = sourceSets.test.get().output.classesDirs
        // All test should have this project's "test" source set on their classpath
        classpath += sourceSets.test.get().output
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 04:59:12 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestTaskToolchainIntegrationTest.groovy

                    sourceCompatibility = "${compileJavaVersion}"
                    targetCompatibility = "${compileJavaVersion}"
                }
    
                task test(type: Test) {
                    testClassesDirs = buildDir.files("classes/java/test")
                    classpath = files(configurations.testImplementation, buildDir.dir("classes/java/test"))
                    binaryResultsDirectory.set(buildDir.dir("test-results"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

            }
        }
    
        private
        fun Project.createGeneratePerformanceDefinitionJsonTask(name: String, performanceSourceSet: SourceSet, outputJson: File) =
            tasks.register<Test>(name) {
                testClassesDirs = performanceSourceSet.output.classesDirs
                classpath = performanceSourceSet.runtimeClasspath
                maxParallelForks = 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginTest.groovy

            task.classpath.files == project.sourceSets.test.runtimeClasspath.files
            task.testClassesDirs.contains(project.sourceSets.test.java.destinationDirectory.get().asFile)
            task.workingDir == project.projectDir
        }
    
        def "applies mappings to tasks added by the build script"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

            description = "Runs ${testType.prefix} with $executer executer"
            systemProperties["org.gradle.integtest.executer"] = executer
            addDebugProperties()
            testClassesDirs = sourceSet.output.classesDirs
            classpath = sourceSet.runtimeClasspath
            extraConfig.execute(this)
            if (integTest.usesJavadocCodeSnippets.get()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TestLauncherSpec.groovy

                    }
                }
    
                task secondTest(type:Test) {
                    classpath = sourceSets.moreTests.runtimeClasspath
                    ${separateClassesDirs(targetVersion) ? "testClassesDirs" : "testClassesDir"} = sourceSets.moreTests.output.${separateClassesDirs(targetVersion) ? "classesDirs" : "classesDir"}
                }
    
                build.dependsOn secondTest
            """
            addDefaultTests()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    By default, when applying the link:java_plugin.html[`java`] plugin, the `testClassesDirs`and `classpath` of all `Test` tasks have the same convention.
    Unless otherwise changed, the default behavior is to execute the tests from the default `test` link:jvm_test_suite_plugin.html[`TestSuite`] by configuring the task with the `classpath` and `testClassesDirs` from the `test` suite.
    This behavior will be removed in Gradle 9.0.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/build.gradle

        jvmArgumentProviders.add(installationEnvProvider)
    
        // For unknown reason, this is set to 'sourceSet.getRuntimeClasspath()' in the 'org.gradle.samples' plugin
        testClassesDirs = sourceSets.docsTest.output.classesDirs
        // 'integTest.samplesdir' is set to an absolute path by the 'org.gradle.samples' plugin
        systemProperties.clear()
    
        filter {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
Back to top