Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for doesNotHaveLegacyLegend (0.26 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ResolvableConfigurationsReportTaskIntegrationTest.groovy

    Configuration custom
    --------------------------------------------------
    My custom configuration
    """)
    
            and:
            doesNotHaveLegacyLegend()
            doesNotHaveIncubatingLegend()
            doesNotPromptForRerunToFindMoreConfigurations()
        }
    
        def "if single resolvable configuration present with attributes, task reports it and them"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

    Variant custom
    --------------------------------------------------
    My custom configuration
    """
            and:
            doesNotHaveLegacyLegend()
            doesNotHaveIncubatingLegend()
            doesNotPromptForRerunToFindMoreVariants()
        }
    
        def "if single outgoing variant present with attributes, task reports it and them"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/InspectsConfigurationReport.groovy

        void hasLegacyLegend() {
            outputContains("(l) Legacy or deprecated configuration. Those are variants created for backwards compatibility which are both resolvable and consumable.")
        }
    
        void doesNotHaveLegacyLegend() {
            outputDoesNotContain("(l) Legacy or deprecated configuration. Those are variants created for backwards compatibility which are both resolvable and consumable.")
        }
    
        void hasIncubatingLegend() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top