Package org.spockframework.runtime.extension

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

Related Classes of org.spockframework.runtime.extension.IMethodInterceptor

Copyright © 2018 www.massapicom. 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.