Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getStableEnvironmentDependencies (0.44 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/vintage/JUnitVintageTestExecutionIntegrationTest.groovy

                .assertTestFailed("failed to execute tests", containsString("Could not execute test class '${testClassName}'"))
        }
    
        @Override
        String getStableEnvironmentDependencies() {
            return super.getStableEnvironmentDependencies() + """
                testImplementation 'junit:junit:${LATEST_JUNIT4_VERSION}'
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestExecutionIntegrationTest.groovy

        abstract String getJUnitVersionAssertion()
        abstract TestClassExecutionResult assertFailedToExecute(TestExecutionResult testResult, String testClassName)
    
        String getStableEnvironmentDependencies() {
            return testFrameworkDependencies
        }
    
        def "executes tests in the correct environment"() {
            given:
            file('src/test/java/org/gradle/OkTest.java') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top