Examples of IMethodInterceptor


Examples of org.spockframework.runtime.extension.IMethodInterceptor

public class TapestryExtension extends AbstractGlobalExtension {
  public void visitSpec(SpecInfo spec) {
    Set<Class<?>> modules = collectModules(spec);
    if (modules == null) return;

    IMethodInterceptor interceptor = new TapestryInterceptor(spec, modules);
    spec.addSharedInitializerInterceptor(interceptor);
    spec.addInitializerInterceptor(interceptor);
    spec.addCleanupSpecInterceptor(interceptor);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.