Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for hasInputsWhenInputPropertyRegistered (0.39 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskInputsTest.groovy

        def hasInputsWhenNonEmptyInputFilesRegistered() {
            when:
            inputs.files('a')
    
            then:
            inputs.hasInputs
            !inputs.hasSourceFiles
        }
    
        def hasInputsWhenInputPropertyRegistered() {
            when:
            inputs.property('a', 'value')
    
            then:
            inputs.hasInputs
            !inputs.hasSourceFiles
        }
    
        def hasInputsWhenEmptySourceFilesRegistered() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 20:09:26 UTC 2022
    - 7.4K bytes
    - Viewed (0)
Back to top