Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
UsingPaths |
|
| 0.0;0 |
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 | @Retention(RetentionPolicy.RUNTIME) | |
10 | @Target({ ElementType.TYPE }) | |
11 | @Inherited | |
12 | public @interface UsingPaths { | |
13 | ||
14 | String searchIn(); | |
15 | String[] includes() default {"**/*.story"}; | |
16 | String[] excludes() default {}; | |
17 | ||
18 | } |