Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for assertUnsupportedMessage (0.25 sec)

  1. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/BaseBuildScanPluginCheckInFixture.groovy

        }
    
        void assertAutoApplied(String output, boolean autoApplied) {
            assert output.contains("${propertyPrefix}.serviceFactoryCreate.config.autoApplied = $autoApplied")
        }
    
        void assertUnsupportedMessage(String output, String unsupported) {
            assert output.contains("${propertyPrefix}.checkIn.unsupported.reasonMessage = $unsupported")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanAutoApplyIntegrationTest.groovy

            given:
            applyPlugin()
    
            when:
            succeeds "dummy", "--scan", "-D${DefaultGradleEnterprisePluginCheckInService.UNSUPPORTED_TOGGLE}=true"
    
            then:
            fixture.assertUnsupportedMessage(output, DefaultGradleEnterprisePluginCheckInService.UNSUPPORTED_TOGGLE_MESSAGE)
            fixture.didNotIssuedNoPluginWarning(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: Thu Apr 25 08:50:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top