Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for objectIsNotAddedWhenVetoActionThrowsAnException (1.42 sec)

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

            container.beforeCollectionChanges(action)
    
            when:
            container.add("a")
    
            then:
            1 * action.execute(null)
            0 * _
        }
    
        def objectIsNotAddedWhenVetoActionThrowsAnException() {
            def action = Mock(Action)
            def failure = new RuntimeException()
            container.beforeCollectionChanges(action)
    
            when:
            container.add("a")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 23:50:58 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top