File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed
src/main/java/com/diffblue/cover/annotations Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change 14
14
*/
15
15
package com .diffblue .cover .annotations ;
16
16
17
+ import static java .lang .annotation .ElementType .METHOD ;
18
+ import static java .lang .annotation .RetentionPolicy .SOURCE ;
19
+
20
+ import java .lang .annotation .Retention ;
21
+ import java .lang .annotation .Target ;
22
+
17
23
/**
18
- * Empty interface, identifies a test as managed by Diffblue. Tests annotated with this can be
19
- * removed or updated by Diffblue and so should not be adjusted manually.
24
+ * Annotation to identify a test as managed by Diffblue. Tests annotated with this can be removed or
25
+ * updated by Diffblue and so should not be adjusted manually.
20
26
*/
21
- public interface ManagedByDiffblue {}
27
+ @ Retention (SOURCE )
28
+ @ Target (METHOD )
29
+ public @interface ManagedByDiffblue {}
You can’t perform that action at this time.
0 commit comments