Merge branch 'release-0.9.6'
[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  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
13  */
14 @Retention(SOURCE)
15 @Target(METHOD)
16 public @interface Dirty {
17
18         String value() default "";
19
20 }