Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for RunnerBuilder (0.21 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/AllExceptIgnoredTestRunnerBuilder.java

    import org.junit.internal.builders.IgnoredBuilder;
    import org.junit.internal.builders.JUnit4Builder;
    import org.junit.runner.Runner;
    import org.junit.runners.BlockJUnit4ClassRunner;
    import org.junit.runners.model.RunnerBuilder;
    import org.slf4j.LoggerFactory;
    
    import java.lang.reflect.Constructor;
    
    public class AllExceptIgnoredTestRunnerBuilder extends AllDefaultPossibilitiesBuilder {
    
        @SuppressWarnings("deprecation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. android-test/build.gradle.kts

        testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
        testInstrumentationRunnerArguments += mapOf(
          "runnerBuilder" to "de.mannodermaus.junit5.AndroidJUnit5Builder",
          "notPackage" to "org.bouncycastle",
          "configurationParameters" to "junit.jupiter.extensions.autodetection.enabled=true"
        )
      }
    
      if (androidBuild) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 14 10:20:09 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorData.groovy

    import org.junit.runner.Runner
    import org.junit.runner.notification.Failure
    import org.junit.runner.notification.RunNotifier
    import org.junit.runners.Parameterized
    import org.junit.runners.Suite
    import org.junit.runners.model.RunnerBuilder
    
    import static org.junit.Assume.assumeTrue
    
    public class ATestClass {
        @Test
        public void ok() {
        }
    }
    
    public class BTestClass {
        @Test
        public void ok() {
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/IgnoredTestDescriptorProvider.java

                return getRunnerLegacy(testClass);
            } catch (NoSuchMethodError e) {
                return getRunnerLegacy(testClass);
            }
        }
    
        /**
         * Prior to JUnit 4.5, the {@code RunnerBuilder} class did not exist, and so we cannot use the {@link AllExceptIgnoredTestRunnerBuilder}.
         * Therefore, we manually construct the runner ourselves the same way it was done in 4.4.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    org.junit.internal.builders; public synchronized class AnnotatedBuilder extends org.junit.runners.model.RunnerBuilder { private static final String CONSTRUCTOR_ERROR_FORMAT = Custom runner class %s should have a public constructor with signature %s(Class testClass); private final org.junit.runners.model.RunnerBuilder suiteBuilder; public void AnnotatedBuilder(org.junit.runners.model.RunnerBuilder); public org.junit.runner.Runner runnerForClass(Class) throws Exception; private Class getEnclosingClassFor(Class);...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
Back to top