Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for OpenTest4J (0.29 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformEnvironmentIntegrationTest.groovy

                    "junit-platform-engine-${JUNIT_PLATFORM_VERSION}.jar",
                    "junit-platform-commons-${JUNIT_PLATFORM_VERSION}.jar",
                    "junit-jupiter-${JUNIT_JUPITER_VERSION}.jar",
                    "opentest4j-${OPENTEST4J_VERSION}.jar",
                    "apiguardian-api-${API_GUARDIAN_VERSION}.jar"
                ));
                assertTrue(jars.containsAll(jarSet));
                jars.removeAll(jarSet);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/failure/mappers/OpenTestMultipleFailuresMapperTestError.groovy

     */
    
    package org.gradle.api.internal.tasks.testing.failure.mappers
    
    
    import org.gradle.api.internal.tasks.testing.failure.ThrowableToTestFailureMapper
    import org.gradle.api.tasks.testing.TestFailure
    import org.opentest4j.MultipleFailuresError
    import spock.lang.Specification
    
    class OpenTestMultipleFailuresMapperTestError extends Specification {
        // SUT
        def mapper = new OpenTestMultipleFailuresErrorMapper()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. 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)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppToolChainChangesIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.app.CppHelloWorldApp
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.UnitTestPreconditions
    import org.opentest4j.TestAbortedException
    
    @Requires(UnitTestPreconditions.NotMacOsM1)
    class CppToolChainChangesIntegrationTest extends AbstractIntegrationSpec {
    
        def setup() {
            def app = new CppHelloWorldApp()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/integTest/groovy/org/gradle/internal/serialize/ExceptionPlaceholderIntegrationTest.groovy

                }
            """
    
            file('src/test/java/example/Issue9487Test.java') << '''
                package example;
    
                import org.junit.Test;
                import org.opentest4j.MultipleFailuresError;
                import java.util.List;
                import java.util.ArrayList;
    
                public class Issue9487Test {
    
                    @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. okhttp-testing-support/src/main/kotlin/okhttp3/testing/PlatformRule.kt

    import org.junit.jupiter.api.extension.ExtensionContext
    import org.junit.jupiter.api.extension.InvocationInterceptor
    import org.junit.jupiter.api.extension.ReflectiveInvocationContext
    import org.openjsse.net.ssl.OpenJSSE
    import org.opentest4j.TestAbortedException
    
    /**
     * Marks a test as Platform aware, before the test runs a consistent Platform will be
     * established e.g. SecurityProvider for Conscrypt installed.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/FastFallbackTest.kt

    import org.junit.jupiter.api.BeforeEach
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.Timeout
    import org.junit.jupiter.api.extension.RegisterExtension
    import org.junitpioneer.jupiter.RetryingTest
    import org.opentest4j.TestAbortedException
    
    /**
     * This test binds two different web servers (IPv4 and IPv6) to the same port, but on different
     * local IP addresses. Requests made to `127.0.0.1` will reach the IPv4 server, and requests made to
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top