Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 677 for Runner (0.13 sec)

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

     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.junit;
    
    import org.gradle.api.internal.tasks.testing.TestSuiteExecutionException;
    import org.junit.internal.runners.JUnit38ClassRunner;
    import org.junit.runner.Description;
    import org.junit.runner.Request;
    import org.junit.runner.RunWith;
    import org.junit.runner.Runner;
    import org.junit.runners.AllTests;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/declarativedsl/DeclarativeDslFirstUsePerformanceTest.groovy

        def "first use"() {
            given:
            runner.tasksToRun = ['tasks']
            runner.warmUpRuns = WARMUP_RUNS
            runner.runs = MEASUREMENT_RUNS
            runner.minimumBaseVersion = MINIMUM_BASE_VERSION
            runner.useDaemon = false
            runner.addBuildMutator { invocationSettings ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/GradleBuildSmokeTest.groovy

        }
    
        def "can install Gradle distribution over itself"() {
            def runner = runner('install', "-Pgradle_installPath=$targetDir", '--stacktrace')
                .ignoreDeprecationWarnings("https://github.com/gradle/gradle-private/issues/3405")
    
            when:
            runner.build()
            def result = runner.build()
    
            then:
            result.task(":distributions-full:install").outcome == TaskOutcome.SUCCESS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassExecutor.java

    import org.junit.experimental.runners.Enclosed;
    import org.junit.runner.Description;
    import org.junit.runner.Request;
    import org.junit.runner.RunWith;
    import org.junit.runner.Runner;
    import org.junit.runner.manipulation.Filter;
    import org.junit.runner.manipulation.Filterable;
    import org.junit.runner.manipulation.NoTestsRemainException;
    import org.junit.runner.notification.RunListener;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerBuildFailureIntegrationTest.groovy

            given:
            buildScript helloWorldTask()
    
            when:
            def runner = gradleVersion >= GradleVersion.version("4.5")
                ? this.runner('helloWorld', '--warning-mode=none')
                : this.runner('helloWorld')
            runner.buildAndFail()
    
            then:
            def t = thrown UnexpectedBuildSuccess
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/AndroidIncrementalExecutionPerformanceTest.groovy

        def setup() {
            testProject = AndroidTestProject.findProjectFor(runner.testProject) as IncrementalAndroidTestProject
            AndroidTestProject.useAgpLatestStableOrRcVersion(runner)
            AndroidTestProject.useKotlinLatestStableOrRcVersion(runner)
            runner.args.add('-Dorg.gradle.parallel=true')
            runner.args.addAll(["--no-build-cache", "--no-scan"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:57 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/NativeCleanBuildPerformanceTest.groovy

        ])
        def "clean assemble (native)"() {
            given:
            def iterations = runner.testProject in ['smallNative', 'smallCppApp', 'smallCppMulti'] ? 40 : null
            runner.tasksToRun = ["assemble"]
            runner.cleanTasks = ["clean"]
            runner.runs = iterations
            runner.warmUpRuns = iterations
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerDaemonIntegrationTest.groovy

            when:
            runner("-g", file("custom-gradle-user-home").absolutePath).build()
    
            then:
            testKitDaemons().daemon.assertIdle()
        }
    
        def "runners executed concurrently can share the same Gradle user home directory"() {
            when:
            3.times {
                concurrent.start {
                    runner().build()
                }
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/IncrementalAndroidTestProject.groovy

            }
        }
    
        @Override
        void configureForAbiChange(CrossVersionPerformanceTestRunner runner) {
            configure(runner)
            runner.tasksToRun = [taskToRunForChange]
            runner.addBuildMutator { invocationSettings ->
                new ApplyAbiChangeToSourceFileMutator(getFileToChange(invocationSettings))
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/ArchiveTreePerformanceTest.groovy

        )
        def "visiting zip trees"() {
            given:
            runner.tasksToRun = ['visitZip']
            runner.addBuildMutator { createArchive(it, "archive.zip") { contents, output -> contents.zipTo(output) } }
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
        }
    
        @RunFor(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:42:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top