Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IntegrationTest (0.17 sec)

  1. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/IntegrationTest.kt

     * Usually referred to as 'functional tests' in literature, but our code base has historically
     * 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)
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

    }
    
    
    internal
    fun Project.createTestTask(name: String, executer: String, sourceSet: SourceSet, testType: TestType, extraConfig: Action<IntegrationTest>): TaskProvider<IntegrationTest> =
        tasks.register<IntegrationTest>(name) {
            val integTest = project.the<IntegrationTestExtension>()
            project.getBucketProvider().get().bucketProvider.configureTest(this, sourceSet.name)
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Mon Feb 12 13:19:06 GMT 2024
    - 11.7K bytes
    - Viewed (0)
Back to top