Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for setGetDescription (0.16 sec)

  1. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/AbstractSpockTaskTest.groovy

        }
    
        def testAddActionWithNull() {
            when:
            getTask().doLast((Closure) null)
    
            then:
            thrown(InvalidUserDataException)
        }
    
        def setGetDescription() {
            when:
            String testDescription = "testDescription"
            getTask().setDescription(testDescription)
    
            then:
            testDescription ==  getTask().getDescription()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 23 14:27:55 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top