Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for OpenTest4J (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. android-test/src/androidTest/java/okhttp/android/test/OkHttpTest.kt

    import org.junit.jupiter.api.BeforeEach
    import org.junit.jupiter.api.Disabled
    import org.junit.jupiter.api.Tag
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.extension.RegisterExtension
    import org.opentest4j.TestAbortedException
    
    /**
     * Run with "./gradlew :android-test:connectedCheck -PandroidBuild=true" and make sure ANDROID_SDK_ROOT is set.
     */
    
    @Tag("Slow")
    class OkHttpTest {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 27K 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)
  7. gradle/verification-metadata.xml

                <trusting group="org.junit.jupiter"/>
                <trusting group="org.junit.platform"/>
                <trusting group="org.junit.vintage"/>
                <trusting group="org.opentest4j"/>
                <trusting group="^org[.]junit($|([.].*))" regex="true"/>
             </trusted-key>
             <trusted-key id="FF986D345395D4AD1DC48137BB6FD5AD91D01857" group="org.seleniumhq.selenium"/>
          </trusted-keys>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

    import org.junit.jupiter.api.Disabled
    import org.junit.jupiter.api.Tag
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.extension.RegisterExtension
    import org.junit.jupiter.api.io.TempDir
    import org.opentest4j.TestAbortedException
    
    /** Android's URLConnectionTest, ported to exercise OkHttp's Call API.  */
    @Tag("Slow")
    class URLConnectionTest {
      @RegisterExtension
      val platform = PlatformRule()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
Back to top