Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 107 for testProjects (0.16 sec)

  1. testing/smoke-ide-test/src/smokeIdeTest/groovy/org/gradle/ide/sync/AbstractIdeaSyncTest.groovy

            }
            testDirectory.file(path)
        }
    
        private void runIdeStarterWith(
            Path gradleDist,
            Path testProject,
            Path ideHome,
            String ide
        ) {
            def gradleDistOption = "--gradle-dist=$gradleDist"
            def projectOption = "--project=$testProject"
            def ideHomeOption = "--ide-home=$ideHome"
            def ideOption = "--ide=$ide"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:28:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestExecutionResult.groovy

        public static final String STATUS_UNKNOWN = "UNKNOWN"
        public static final int FLAKINESS_DETECTION_THRESHOLD = 99
        String teamCityBuildId
        String scenarioName
        String scenarioClass
        String testProject
        String webUrl
        String testFailure
        String status
    
        boolean isBuildFailed() {
            return status == STATUS_FAILURE
        }
    
        boolean isUnknown() {
            return status == STATUS_UNKNOWN
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenDependencyResolveIntegrationTest.groovy

    @RequiredFeature(feature = GradleMetadataResolveRunner.REPOSITORY_TYPE, value = "maven")
    class MavenDependencyResolveIntegrationTest extends AbstractModuleDependencyResolveTest {
    
        String getRootProjectName() { 'testproject' }
    
        def "dependency includes main artifact and runtime dependencies of referenced module"() {
            given:
            repository {
                'org.gradle:other:preview-1'()
                'org.gradle:test:1.45' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/ScenarioBuildResultData.groovy

    @MapConstructor
    @CompileStatic
    class ScenarioBuildResultData {
        String teamCityBuildId
        String scenarioName
        String scenarioClass
        String testProject
        String webUrl
        String testFailure
        // SUCCESS/FAILURE/UNKNOWN
        String status
        String agentName
        String agentUrl
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 07 13:01:55 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/TestScenarioSelector.java

     *
     * This is used as a workaround for not being able to add a test filter for unrolled Spock tests.
     */
    public class TestScenarioSelector {
        private static final String TEST_PROJECT_PROPERTY_NAME = "org.gradle.performance.testProject";
    
        public static boolean shouldRun(String testId) {
            if (testId.contains(";")) {
                throw new IllegalArgumentException("Test ID cannot contain ';', but was '" + testId + "'");
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/AndroidPerformanceTestFixture.groovy

            // which fails when the test project is non-incremental.
            runner.assumeShouldRun()
            AndroidTestProject.projectFor(runner.testProject)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r24/BuildInvocationsCrossVersionSpec.groovy

        def "set task selector description taken from task with path that has lowest ordering"() {
            temporaryFolder.createFile('settings.gradle') << '''
              rootProject.name = 'TestProject'
              include 'sub'
            '''
    
            temporaryFolder.createFile('build.gradle') << '''
              task alpha {
                description = 'ALPHA from root project'
              }
              task beta {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/WithExternalRepository.groovy

    @CompileStatic
    trait WithExternalRepository {
        Server server
        int serverPort
    
        File getRepoDir() {
            new File(TestProjectLocator.findProjectDir(runner.testProject), 'repository')
        }
    
        abstract CrossVersionPerformanceTestRunner getRunner()
    
        WebAppContext createContext() {
            def context = new WebAppContext()
            context.setContextPath("/")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionPerformanceResults.groovy

        @Override
        String toString() {
            return displayName
        }
    
        String getDisplayName() {
            def displayName = "Results for test project '$testProject' with tasks ${tasks.join(', ')}"
            if (cleanTasks) {
                displayName += ", cleaned with ${cleanTasks.join(', ')}"
            }
            return displayName
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/LazyAttributesIntegrationTest.groovy

    class LazyAttributesIntegrationTest extends AbstractIntegrationSpec {
        def "properties used as attribute values are read lazily"() {
            settingsFile << "rootProject.name = 'TestProject'"
    
            buildFile << """
                plugins {
                    id 'java'
                }
    
                Property<String> sampleProperty = project.objects.property(String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top