Remove @author tags
[Sone.git] / src / test / java / net / pterodactylus / sone / test / Dirty.java
1 package net.pterodactylus.sone.test;
2
3 import static java.lang.annotation.ElementType.METHOD;
4 import static java.lang.annotation.RetentionPolicy.SOURCE;
5
6 import java.lang.annotation.Retention;
7 import java.lang.annotation.Target;
8
9 /**
10  * This annotation marks test methods that are somehow not good test methods.
11  */
12 @Retention(SOURCE)
13 @Target(METHOD)
14 public @interface Dirty {
15
16         String value() default "";
17
18 }