Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for createFixtureFor (0.21 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGradlePropertiesIntegrationTest.groovy

            given:
            String systemProp = "fromPropertiesFile"
            def configurationCache = newConfigurationCacheFixture()
            def fixture = spec.createFixtureFor(this, systemProp)
            fixture.setup()
    
            when:
            System.clearProperty(systemProp)
            configurationCacheRun fixture.task
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/SystemPropertiesCompositeBuildFixture.groovy

            @Override
            String toString() {
                return "definitions: ${systemPropertyDefinitions.join(", ")}, access: $systemPropertyAccess"
            }
    
            SystemPropertiesCompositeBuildFixture createFixtureFor(AbstractConfigurationCacheIntegrationTest test, String propertyKey) {
                return new SystemPropertiesCompositeBuildFixture(this, test, propertyKey)
            }
        }
    
        enum SystemPropertyAccess {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top