Coverage Report - org.jbehave.core.annotations.groovy.UsingGroovy
 
Classes in this File Line Coverage Branch Coverage Complexity
UsingGroovy
N/A
N/A
0
 
 1  
 package org.jbehave.core.annotations.groovy;
 2  
 
 3  
 import groovy.lang.GroovyClassLoader;
 4  
 
 5  
 import java.lang.annotation.ElementType;
 6  
 import java.lang.annotation.Inherited;
 7  
 import java.lang.annotation.Retention;
 8  
 import java.lang.annotation.RetentionPolicy;
 9  
 import java.lang.annotation.Target;
 10  
 
 11  
 import org.jbehave.core.configuration.groovy.GroovyResourceFinder;
 12  
 
 13  
 @Retention(RetentionPolicy.RUNTIME)
 14  
 @Target( { ElementType.TYPE })
 15  
 @Inherited
 16  
 public @interface UsingGroovy {
 17  
 
 18  
     Class<? extends GroovyClassLoader> classLoader() default GroovyClassLoader.class;
 19  
 
 20  
     Class<? extends GroovyResourceFinder> resourceFinder() default GroovyResourceFinder.class;
 21  
 
 22  
 }