Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

                    testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
                }
                $script
            """)
        }
    
        void createSimpleJupiterTest() {
            file('src/test/java/org/gradle/JUnitJupiterTest.java') << '''
                package org.gradle;
    
                import org.junit.jupiter.api.Test;
    
                public class JUnitJupiterTest {
    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/JUnitPlatformLauncherSessionListenerIntegrationTest.groovy

            outputDoesNotContain("junit-platform-launcher")
        }
    
        def "creates LauncherSession before loading test classes"() {
            given:
            createSimpleJupiterTest()
            buildFile << """
                dependencies {
                    testImplementation 'org.junit.platform:junit-platform-launcher:${LATEST_PLATFORM_VERSION}'
                }
                test {
    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