Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for closeInvokesStopMethodOnEachService (0.31 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            given:
            registry.add(TestCloseService, service)
    
            when:
            registry.close()
    
            then:
            1 * service.close()
        }
    
        def closeInvokesStopMethodOnEachService() {
            def service = Mock(TestStopService)
    
            given:
            registry.add(TestStopService, service)
    
            when:
            registry.close()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
Back to top