Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ClassWithBrokenConstructor (0.29 sec)

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

            registry.register({ registration -> registration.add(ClassWithBrokenConstructor) } as Action)
    
            when:
            registry.get(ClassWithBrokenConstructor)
    
            then:
            ServiceCreationException e = thrown()
            e.message == 'Could not create service of type DefaultServiceRegistryTest$ClassWithBrokenConstructor.'
            e.cause == ClassWithBrokenConstructor.failure
        }
    
    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