Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for resetInterceptors (0.14 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/classpath/CallInterceptionFilteringTest.groovy

        }
    
        def 'intercepts a basic instance call with #method from #caller with `instrumentation only` filter'() {
            given:
            bytecodeInterceptorFilter = BytecodeInterceptorFilter.INSTRUMENTATION_ONLY
            resetInterceptors()
    
            when:
            def intercepted = interceptedWhen(shouldDelegate, invocation)
    
            then:
            intercepted == expected
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/classpath/AbstractCallInterceptionTest.groovy

            )
        }
    
        def cleanup() {
            jvmInterceptorsSubstitution.cleanupForCurrentThread()
            groovyInterceptorsSubstitution.cleanupForCurrentThread()
        }
    
        def resetInterceptors() {
            cleanup()
            setup()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top