Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for secondaryTest (0.26 sec)

  1. platforms/documentation/docs/src/snippets/testing/test-suite-configure-type/groovy/build.gradle

     */
    
    plugins {
        id 'java'
    }
    
    version = '1.0.2'
    group = 'org.gradle.sample'
    
    repositories {
        mavenCentral()
    }
    
    // tag::configure-type[]
    testing {
        suites {
            secondaryTest(JvmTestSuite) {
                testType = TestSuiteType.INTEGRATION_TEST // <1>
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 918 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/testing/test-suite-configure-type/kotlin/build.gradle.kts

     */
    
    plugins {
        java
    }
    
    version = "1.0.2"
    group = "org.gradle.sample"
    
    repositories {
        mavenCentral()
    }
    
    // tag::configure-type[]
    testing {
        suites {
            val secondaryTest by registering(JvmTestSuite::class) {
                testType = TestSuiteType.INTEGRATION_TEST // <1>
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 939 bytes
    - Viewed (0)
Back to top