Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for forkEvery (0.29 sec)

  1. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/test/TestTaskPropertiesServiceIntegrationTest.groovy

                    testImplementation('org.junit.jupiter:junit-jupiter:5.9.2')
                    testRuntimeOnly('org.junit.platform:junit-platform-launcher')
                }
                test {
                    forkEvery = 42
                    filter {
                        includeTestsMatching('*Class')
                        excludeTestsMatching('exclude-pattern')
                    }
                    useJUnitPlatform {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/public-api-symmetrical-accessors-nullability.txt

    Accessors for org.gradle.api.tasks.javadoc.Javadoc.destinationDir don't use symmetrical @Nullable
    Accessors for org.gradle.api.tasks.javadoc.Javadoc.maxMemory don't use symmetrical @Nullable
    Accessors for org.gradle.api.tasks.testing.Test.forkEvery don't use symmetrical @Nullable
    Accessors for org.gradle.api.tasks.testing.testng.TestNGOptions.parallel don't use symmetrical @Nullable
    Accessors for org.gradle.caching.http.HttpBuildCache.url don't use symmetrical @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/TestLauncherDebugTestsCrossVersionTest.groovy

            true // test successfully executed with debugger attached
        }
    
        def "forks only one JVM to debug"() {
            setup:
            buildFile << """
                 tasks.withType(Test) {
                      forkEvery = 1
                      maxParallelForks = 2
                }
            """
            jdwpClient.listen()
    
            when:
            withConnection { connection ->
                connection.newTestLauncher()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top