24 lines
600 B
Java
24 lines
600 B
Java
package jmri.util.junit.annotations;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
/**
|
|
* Annotation for test denoting work that needs to be done to a specific test.
|
|
* to be fully functional. This annotation may be used with {@link org.junit.jupiter.api.Disabled}.
|
|
* <p>
|
|
*
|
|
* @author Paul Bender Copyright 2018
|
|
*/
|
|
|
|
@Retention(RetentionPolicy.CLASS) // For access by SpotBugs et al
|
|
@Target({ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.TYPE})
|
|
@Documented
|
|
@Inherited
|
|
public @interface ToDo {
|
|
/**
|
|
* The optional reason why the test needs work.
|
|
*/
|
|
String value() default "";
|
|
}
|
|
|