1 | |
package org.jbehave.core.annotations; |
2 | |
|
3 | |
import java.lang.annotation.Documented; |
4 | |
import java.lang.annotation.ElementType; |
5 | |
import java.lang.annotation.Inherited; |
6 | |
import java.lang.annotation.Retention; |
7 | |
import java.lang.annotation.RetentionPolicy; |
8 | |
import java.lang.annotation.Target; |
9 | |
|
10 | |
import org.jbehave.core.io.StoryFinder; |
11 | |
|
12 | |
@Retention(RetentionPolicy.RUNTIME) |
13 | |
@Target({ ElementType.TYPE }) |
14 | |
@Inherited |
15 | |
@Documented |
16 | |
public @interface UsingPaths { |
17 | |
|
18 | |
String searchIn(); |
19 | |
String[] includes() default {"**/*.story"}; |
20 | |
String[] excludes() default {}; |
21 | |
Class<? extends StoryFinder> storyFinder() default StoryFinder.class; |
22 | |
|
23 | |
} |