Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for MockMethod (0.09 sec)

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

            } catch (Throwable t) {
                throw t
            }
        }
    
        void intercept(Action<Void> action) {
            MethodInfo methodInfo = new MethodInfo()
            methodInfo.setName('MockMethod')
            intercept(new MethodInvocation(null, null, null, null, null, methodInfo, null) {
                void proceed() throws Throwable {
                    action.execute(null)
                }
            })
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (1)
Back to top