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