co.unruly.junit.annotations.IgnoreUntil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junit-rules Show documentation
Show all versions of junit-rules Show documentation
A collection of JUnit rules from Unruly's codebase
The newest version!
package co.unruly.junit.annotations;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface IgnoreUntil {
String value() default "2000-01-01";
}