All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy