Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for testSoftwareType (0.22 sec)

  1. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

            !topLevelFunctions.find { it.contains("simpleName=testSoftwareType") }
        }
    
        def 'interpretation sequences obtained via TAPI are suitable for analysis'() {
            given:
            withSoftwareTypePlugins().prepareToExecute()
    
            file("settings.gradle.dcl") << """
                $ecosystemPluginInSettings
                conventions {
                    testSoftwareType {
                        id = "convention"
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-provider/src/testFixtures/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeFixture.groovy

            String implementationTypeClassName = "TestSoftwareTypeExtension",
            String publicTypeClassName = null,
            String softwareTypePluginClassName = "SoftwareTypeImplPlugin",
            String softwareType = "testSoftwareType",
            String conventions = testSoftwareTypeExtensionConventions
        ) {
            return """
                package org.gradle.test;
    
                import org.gradle.api.DefaultTask;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:26 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeDeclarationIntegrationTest.groovy

            run(":printTestSoftwareTypeExtensionImplConfiguration")
    
            then:
            assertThatDeclaredValuesAreSetProperly()
    
            when:
            file("build.gradle.dcl") << """
                testSoftwareType {
                    nonPublic = "foo"
                }
            """
            fails(":printTestSoftwareTypeExtensionImplConfiguration")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 19 16:59:01 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

        }
    
        static String getDeclarativeScriptThatConfiguresOnlyTestSoftwareType(String configuration="") {
            return """
                testSoftwareType {
                    ${configuration}
                }
            """
        }
    
        static String getDeclarativeSettingsScriptThatSetsConventions(String configuration="") {
            return """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top