Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for OpenTest4J (0.16 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/UnsupportedWithConfigurationCacheExtension.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures
    
    import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
    import org.opentest4j.TestAbortedException
    import org.spockframework.runtime.extension.IAnnotationDrivenExtension
    import org.spockframework.runtime.extension.IMethodInterceptor
    import org.spockframework.runtime.extension.IMethodInvocation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 08:57:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/build.gradle.kts

            version {
                // MultipleFailuresError appears only since 1.3.0-RC2
                require("1.3.0")
            }
            because("We test assertion errors coming from OpenTest4J")
        }
        testRuntimeOnly(libs.guice) {
            because("Used by TestNG")
        }
    
        testFixturesImplementation(project(":testing-base"))
        testFixturesImplementation(libs.junit)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ToBeFixedSpecInterceptor.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures
    
    import org.gradle.internal.reflect.ClassInspector
    import org.gradle.test.fixtures.ResettableExpectations
    import org.opentest4j.TestAbortedException
    import org.spockframework.runtime.extension.IMethodInterceptor
    import org.spockframework.runtime.extension.IMethodInvocation
    import org.spockframework.runtime.model.FeatureInfo
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 13:10:05 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/build.gradle.kts

            because("For ApiMavenResolver. Provides MavenRepositorySystemUtils")
        }
        implementation(libs.nativePlatform)
        implementation(libs.netty)
        implementation(libs.opentest4j)
        // we depend on both: sshd platforms and libraries
        implementation(libs.sshdCore)
        implementation(platform(libs.sshdCore))
        implementation(libs.sshdScp)
        implementation(platform(libs.sshdScp))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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