Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for assertUnsupportedMessage (0.42 sec)

  1. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/BuildScanConfigIntegrationTest.groovy

            when:
            succeeds "t", "--scan", "-D${LegacyGradleEnterprisePluginCheckInService.UNSUPPORTED_TOGGLE}=true"
    
            then:
            scanPlugin.assertUnsupportedMessage(output, LegacyGradleEnterprisePluginCheckInService.UNSUPPORTED_TOGGLE_MESSAGE)
            scanPlugin.issuedNoPluginWarning(output)
        }
    
        def "does not warn if no scan requested but no scan plugin applied"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/LegacyGradleEnterpriseCheckInConfigCachingIntegTest.groovy

            }
    
            buildFile << """
                task t
            """
    
            when:
            succeeds "t", "--configuration-cache"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 13:28:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/GradleEnterprisePluginLegacyContactPointFixture.groovy

        }
    
        void assertEnabled(String output, boolean enabled) {
            assert output.contains("buildScan.enabled: $enabled")
        }
    
        void assertUnsupportedMessage(String output, String unsupported) {
            assert output.contains("buildScan.unsupportedMessage: $unsupported")
        }
    
        BuildScanConfig.Attributes attributes(String output) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginCheckInIntegrationTest.groovy

        def "can convey unsupported to plugin that supports it"() {
            given:
            applyPlugin()
    
            when:
            succeeds "t", "-D${UNSUPPORTED_TOGGLE}=true"
    
            then:
            plugin.assertUnsupportedMessage(output, UNSUPPORTED_TOGGLE_MESSAGE)
        }
    
        def "checkin happens once for build with buildSrc"() {
            given:
            applyPlugin()
            file("buildSrc/src/main/groovy/Thing.groovy") << "class Thing {}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top