Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for buildScriptWithJupiterDependencies (0.41 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformIntegrationSpec.groovy

    class JUnitPlatformIntegrationSpec extends AbstractIntegrationSpec {
        def setup() {
            executer.noExtraLogging()
            buildScriptWithJupiterDependencies("""
                test {
                    useJUnitPlatform()
                }
            """)
        }
    
        def buildScriptWithJupiterDependencies(script, String version = LATEST_JUPITER_VERSION) {
            buildScript("""
                apply plugin: 'java'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformIntegrationTest.groovy

                .assertTestPassed('inside')
        }
    
        @Issue('https://github.com/gradle/gradle/issues/4924')
        def "re-executes test when #key is changed"() {
            given:
            buildScriptWithJupiterDependencies("""
                test {
                    useJUnitPlatform {
                        ${key} ${value}
                    }
                }
            """)
            createSimpleJupiterTests()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
Back to top