Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for OpenTest4J (0.12 sec)

  1. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

            'junit-platform-engine-1.8.3'   | 'junit-platform-engine-1.9.9'
            'junit-platform-launcher-1.8.3' | 'junit-platform-launcher-1.9.9'
            'opentest4j-1.2.27'             | 'opentest4j-1.3.38'
        }
    
        def "does not locate dependency replaced by Develocity plugin in classpath when installation is present"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. subprojects/distributions-dependencies/build.gradle.kts

            api(libs.mySqlConnector)        { version { strictly("8.0.17") }}
            api(libs.netty)                 { version { strictly("4.1.63.Final") }}
            api(libs.opentest4j)            { version { strictly("1.3.0") }}
            api(libs.samplesCheck)          { version { strictly("1.0.0") }}
            api(libs.samplesDiscovery)      { version { strictly("1.0.0") }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 19:54:08 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/ExceptionPlaceholder.java

         * for an exception. This is for classes of external projects which actually do
         * something similar to what we do in Gradle with {@link DefaultMultiCauseException}.
         * It is, in particular, the case for opentest4j.
         */
        private static List<? extends Throwable> tryExtractMultiCauses(Throwable throwable) {
            Method causesMethod = findCandidateGetCausesMethod(throwable);
            if (causesMethod != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

            jarsReplacedByTdPlugin.add("junit-platform-commons-");
            jarsReplacedByTdPlugin.add("junit-platform-engine-");
            jarsReplacedByTdPlugin.add("junit-platform-launcher-");
            jarsReplacedByTdPlugin.add("opentest4j-");
            return jarsReplacedByTdPlugin;
        }
    
        @Nullable
        private final GradleInstallation gradleInstallation;
        private final Map<String, Module> modules = new HashMap<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val mockwebserver = "com.squareup.okhttp3:mockwebserver"
        val mySqlConnector = "mysql:mysql-connector-java"
        val netty = "io.netty:netty-all"
        val opentest4j = "org.opentest4j:opentest4j"
        val samplesCheck = "org.gradle.exemplar:samples-check"
        val samplesDiscovery = "org.gradle.exemplar:samples-discovery"
        val snappy = "org.iq80.snappy:snappy"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

    import org.gradle.util.internal.VersionNumber
    import org.hamcrest.CoreMatchers
    import org.hamcrest.Matcher
    import org.intellij.lang.annotations.Language
    import org.junit.Rule
    import org.opentest4j.AssertionFailedError
    import spock.lang.Specification
    
    import java.nio.file.Files
    import java.util.regex.Pattern
    
    import static org.gradle.integtests.fixtures.timeout.IntegrationTestTimeout.DEFAULT_TIMEOUT_SECONDS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top