org.ehoffman.test.Broken Maven / Gradle / Ivy
package org.ehoffman.test;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* States that you have broken this test and plan to fix it.
* The test will be run, but failures will be marked as skips.
*
* @author rex
*/
@Retention(value = RetentionPolicy.RUNTIME)
@Target(value = { ElementType.METHOD })
public @interface Broken {
String developer();
String issueInTracker();
}