Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 100 for testProjects (0.17 sec)

  1. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/TaskCreationPerformanceTest.groovy

    import static org.gradle.performance.annotations.ScenarioType.PER_COMMIT
    import static org.gradle.performance.results.OperatingSystem.LINUX
    
    @RunFor(
        @Scenario(type = PER_COMMIT, operatingSystems = [LINUX], testProjects = ["createLotsOfTasks"])
    )
    class TaskCreationPerformanceTest extends AbstractCrossVersionPerformanceTest {
    
        def "create many tasks"() {
            given:
            runner.tasksToRun = ['help']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/VerboseTestOutputPerformanceTest.groovy

    import static org.gradle.performance.annotations.ScenarioType.PER_DAY
    import static org.gradle.performance.results.OperatingSystem.LINUX
    
    @RunFor(
        @Scenario(type = PER_DAY, operatingSystems = [LINUX], testProjects = ["withVerboseTestNG", "withVerboseJUnit"])
    )
    class VerboseTestOutputPerformanceTest extends AbstractCrossVersionPerformanceTest {
    
        def "cleanTest test with verbose test output"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaConfigurationPerformanceTest.groovy

    import static org.gradle.performance.annotations.ScenarioType.PER_COMMIT
    import static org.gradle.performance.results.OperatingSystem.LINUX
    
    @RunFor(
        @Scenario(type = PER_COMMIT, operatingSystems = [LINUX], testProjects = ["largeJavaMultiProject", "largeMonolithicJavaProject", "largeJavaMultiProjectKotlinDsl"])
    )
    class JavaConfigurationPerformanceTest extends AbstractCrossVersionPerformanceTest {
    
        def "configure"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/java/ParallelBuildPerformanceTest.groovy

    import static org.gradle.performance.annotations.ScenarioType.PER_WEEK
    import static org.gradle.performance.results.OperatingSystem.LINUX
    
    @RunFor(
        @Scenario(type = PER_WEEK, operatingSystems = [LINUX], testProjects = ["largeJavaMultiProject", "largeMonolithicJavaProject"])
    )
    class ParallelBuildPerformanceTest extends AbstractCrossBuildPerformanceTest {
    
        def "clean assemble with 4 parallel workers"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/ExcludeRuleMergingPerformanceTest.groovy

    import static org.gradle.performance.annotations.ScenarioType.PER_COMMIT
    import static org.gradle.performance.results.OperatingSystem.LINUX
    
    @RunFor(
        @Scenario(type = PER_COMMIT, operatingSystems = [LINUX], testProjects = ["excludeRuleMergingBuild"])
    )
    class ExcludeRuleMergingPerformanceTest extends AbstractCrossVersionPerformanceTest implements WithExternalRepository {
    
        def setup() {
            runner.minimumBaseVersion = '5.6.4'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/maven/JavaTestGradleVsMavenPerformanceTest.groovy

            given:
            runner.testGroup = "Gradle vs Maven test build using Java plugin"
            def testProject = JavaTestProject.projectFor(runner.testProject)
            def fileToChange = testProject.config.fileToChangeByScenario["assemble"]
            configureMavenOptions(testProject)
            runner.gradleTasks = gradleTask.split(' ')
            runner.equivalentMavenTasks = mavenTask.split(' ')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/RealLifeAndroidStudioPerformanceTest.groovy

         */
        def "run Android Studio sync"() {
            given:
            runner.args = [AndroidGradlePluginVersions.OVERRIDE_VERSION_CHECK]
            def testProject = AndroidTestProject.projectFor(runner.testProject)
            testProject.configure(runner)
            AndroidTestProject.useAgpLatestStableOrRcVersion(runner)
            AndroidTestProject.useKotlinLatestStableOrRcVersion(runner)
            runner.warmUpRuns = 20
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AbstractCrossBuildPerformanceTestRunner.groovy

        }
    
        abstract R newResult()
    
        R run() {
            assert !specs.empty
            assert testId
    
            Assume.assumeTrue(TestScenarioSelector.shouldRun(testId))
            TestProjects.validateTestProject(testProject)
    
            def results = newResult()
    
            try {
                runAllSpecifications(results)
            } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/AndroidIncrementalExecutionPerformanceTest.groovy

    )
    @LeaksFileHandles("The TAPI keeps handles to the distribution it starts open in the test JVM")
    class AndroidIncrementalExecutionPerformanceTest extends AbstractIncrementalExecutionPerformanceTest implements AndroidPerformanceTestFixture {
        IncrementalAndroidTestProject testProject
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:57 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/buildcache/LocalTaskOutputCacheCrossBuildPerformanceTest.groovy

    import static org.gradle.performance.annotations.ScenarioType.PER_WEEK
    import static org.gradle.performance.results.OperatingSystem.LINUX
    
    @RunFor([
        @Scenario(type = PER_WEEK, operatingSystems = [LINUX], testProjects = ["largeJavaMultiProject", "largeMonolithicJavaProject"])
    ])
    class LocalTaskOutputCacheCrossBuildPerformanceTest extends AbstractCrossBuildPerformanceTest {
        def "assemble with local cache (build comparison)"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top