Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FailsWithDsl (0.12 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/FailsWithDsl.groovy

    /**
     * Assert that this test fails when run with configuration cache enabled.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.METHOD)
    @ExtensionAnnotation(FailsWithDslExtension)
    @interface FailsWithDsl {
        GradleDsl value()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/FailsWithDslExtension.groovy

    import org.spockframework.runtime.extension.IMethodInvocation
    import org.spockframework.runtime.model.FeatureInfo
    
    @CompileStatic
    class FailsWithDslExtension implements IAnnotationDrivenExtension<FailsWithDsl> {
        @Override
        void visitFeatureAnnotation(FailsWithDsl annotation, FeatureInfo feature) {
            def dsl = annotation.value()
            feature.featureMethod.addInterceptor(new FailsWithDslInterceptor(dsl))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top