Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for taskWithSingleOption (0.14 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionIntegrationTest.groovy

        def "can evaluate option value of type #optionType when #description for Java task on command line"() {
            given:
            file('buildSrc/src/main/java/SampleTask.java') << taskWithSingleOption(optionType)
            buildFile << sampleTask()
    
            when:
            run(['sample'] + options as String[])
    
            then:
            outputContains("Value of myProp: $optionValue")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 28.4K bytes
    - Viewed (0)
Back to top