Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 107 of 107 for testProjects (0.17 sec)

  1. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/fixture/CrossVersionPerformanceTestExecutionTest.groovy

    import org.gradle.performance.results.CrossVersionPerformanceResults
    
    class CrossVersionPerformanceTestExecutionTest extends ResultSpecification {
        def result = new CrossVersionPerformanceResults(testProject: "some-project", tasks: [], cleanTasks: [])
    
        def "passes when average execution time for current release is smaller than average execution time for previous releases"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenScopesAndProjectDependencySubstitutionIntegrationTest.groovy

            resolve.addDefaultVariantDerivationStrategy()
            resolve.expectDefaultConfiguration("runtime")
            createDirs("child1", "child2")
            settingsFile << """
                rootProject.name = 'testproject'
                include 'child1', 'child2'
            """
            buildFile << """
                allprojects {
                    repositories {
                        maven { url '${mavenRepo.uri}' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. testing/performance/docs/performance-bisect.md

    We modify `RealWorldNativePluginPerformanceTest` to only include the test we are interested in:
    ```java
        @Ignore
        @Unroll("Project '#testProject' measuring incremental build speed")
        def "build real world native project"() {
    ...
    }
    
        @Unroll('Project #buildSize native build #changeType')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/artifacts/dsl/DependencyCollectorDslIntegrationTest.groovy

        static final String BAR_TXT = "bar.txt"
    
        static final String MYDEPS_BUNDLE = "mydeps"
    
        static final String PROJECT_GROUP = ""
        static final String PROJECT_NAME = "testproject"
        static final String PROJECT_VERSION = "1.1"
    
        String singleString(String group, String name, String version) {
            return renderString(group + ":" + name + ":" + version)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 16:23:38 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TestLauncherSpec.groovy

                            .run()
                }
            } catch (BuildException e) {
            }
        }
    
        def testCode() {
            settingsFile << "rootProject.name = 'testproject'\n"
            buildFile.text = simpleJavaProject()
    
            def classesDir = 'file("build/classes/moreTests")'
            buildFile << """
                sourceSets {
                    moreTests {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r26/TestLauncherCrossVersionSpec.groovy

                assert operation.result.skipMessage == "NO-SOURCE"
            }
            true
        }
    
        def testCode() {
            settingsFile << "rootProject.name = 'testproject'\n"
            buildFile.text = simpleJavaProject()
    
            def classesDir = 'file("build/classes/moreTests")'
            buildFile << """
                sourceSets {
                    moreTests {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectTest.groovy

        def scriptClasspath() {
            when:
            project.buildscript {
                repositories
            }
    
            then:
            1 * scriptHandlerMock.getRepositories()
        }
    
        def testProject() {
            expect:
            project.is(child1.parent)
            project.is(child1.rootProject)
            checkProject(project, null, 'root', rootDir)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top