Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 98 for TestTask (0.17 sec)

  1. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-additional-test-types/groovy/buildSrc/src/main/groovy/myproject.java-conventions.gradle

            }
    
            integrationTest(JvmTestSuite) {
                dependencies {
                    implementation project()
                }
    
                targets {
                    all {
                        testTask.configure {
                            shouldRunAfter(test)
                        }
                    }
                }
            }
        }
    }
    
    tasks.named('check') {
        dependsOn(testing.suites.integrationTest)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 594 bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestReportTaskIntegrationTest.groovy

                    testResults.from([
                        testing.suites.test.targets.test.testTask,
                        testing.suites.superTest.targets.superTest.testTask,
                        testing.suites.subTest.targets.subTest.testTask
                    ])
                }
    
                tasks.named('build').configure { it.dependsOn testReport }
            """.stripIndent()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-additional-test-types/kotlin/buildSrc/src/main/kotlin/myproject.java-conventions.gradle.kts

            val integrationTest by registering(JvmTestSuite::class) {
                dependencies {
                    implementation(project())
                }
    
                targets {
                    all {
                        testTask.configure {
                            shouldRunAfter(test)
                        }
                    }
                }
            }
        }
    }
    
    tasks.named("check") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 661 bytes
    - Viewed (0)
  4. build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts

        val defaultExecuter = "embedded"
        val prefix = testType.prefix
        testType.executers.forEach { executer ->
            val taskName = "$executer${prefix.capitalize()}Test"
            val testTask = createTestTask(taskName, executer, sourceSet, testType) {
                this.setSystemPropertiesOfTestJVM("latest")
                this.systemProperties["org.gradle.integtest.crossVersion"] = "true"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-multiplatform-js-jvm-example/build.gradle.kts

     */
    
    plugins {
        kotlin("multiplatform") version "$kotlinVersion"
    }
    
    repositories {
        mavenCentral()
    }
    
    kotlin {
        js(IR) {
            browser {
                testTask {
                    useKarma {
                        useChromeHeadless()
                        $enableCssSupportOld
                    }
                }
    
                $enableCssSupportNew
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 07:33:24 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. platforms/jvm/jacoco/src/test/groovy/org/gradle/testing/jacoco/plugins/JacocoPluginSpec.groovy

            given:
            project.apply plugin: 'java'
            RepoScriptBlockUtil.configureMavenCentral(project.repositories)
            def testTask = project.tasks.getByName('test')
            JacocoTaskExtension extension = testTask.extensions.getByType(JacocoTaskExtension)
    
            when:
            extension.with {
                destinationFile = project.file('build/jacoco/fake.exec')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/RealLifeAndroidBuildPerformanceTest.groovy

                    subprojects {
                        tasks.withType(com.android.build.gradle.tasks.factory.AndroidUnitTest) { testTask ->
                            testTask.finalizedBy(finalizerTask)
                            finalizerTask.configure {
                                dependsOn testTask
                            }
                        }
                    }
                """.stripIndent()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/groovy/convention-plugins/src/main/groovy/com.myorg.service-conventions.gradle

            }
    
            integrationTest(JvmTestSuite) {
                dependencies {
                    implementation project()
                }
    
                targets {
                    all {
                        testTask.configure {
                            shouldRunAfter(test)
                        }
                    }
                }
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/dsl/org.gradle.api.plugins.jvm.JvmTestSuiteTarget.xml

            <title>Properties</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>testTask</td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestVerificationFailureHandlingIntegrationTest.groovy

                    public void doAction() {
                        // no-op
                    }
                }
    
                def testTask = tasks.named('test', Test)
    
                tasks.register('customTask', CustomTask) {
                    customInput.from(testTask.flatMap { it.binaryResultsDirectory })
                }
            '''
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top