Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for createSimpleJupiterTest (0.26 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/JUnitPlatformIntegrationTest.groovy

            given:
            buildFile << """
            dependencies {
                testImplementation 'org.junit.platform:junit-platform-runner:1.0.3'
            }
            """
            createSimpleJupiterTest()
    
            expect:
            succeeds('test')
        }
    
        def 'can handle class level ignored tests'() {
            given:
            file('src/test/java/org/gradle/IgnoredTest.java') << '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  3. 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