X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Ftest%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ftest%2FDirty.java;fp=src%2Ftest%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ftest%2FDirty.java;h=def311a22b6e1f7a29260eb98d876e1c44ec8264;hb=97308fe0ec3fc73fe89e3192e7c46560e0403291;hp=0000000000000000000000000000000000000000;hpb=f4cc2308ed23058a9cee4e6dcf4ffbf77659234d;p=Sone.git diff --git a/src/test/java/net/pterodactylus/sone/test/Dirty.java b/src/test/java/net/pterodactylus/sone/test/Dirty.java new file mode 100644 index 0000000..def311a --- /dev/null +++ b/src/test/java/net/pterodactylus/sone/test/Dirty.java @@ -0,0 +1,20 @@ +package net.pterodactylus.sone.test; + +import static java.lang.annotation.ElementType.METHOD; +import static java.lang.annotation.RetentionPolicy.SOURCE; + +import java.lang.annotation.Retention; +import java.lang.annotation.Target; + +/** + * This annotation marks test methods that are somehow not good test methods. + * + * @author David ‘Bombe’ Roden + */ +@Retention(SOURCE) +@Target(METHOD) +public @interface Dirty { + + String value() default ""; + +}