OnJava8-Examples/net/mindview/atunit/TestProperty.java

9 lines
315 B
Java
Raw Normal View History

2015-04-20 15:36:01 -07:00
//: net/mindview/atunit/TestProperty.java
// The @Unit @TestProperty tag.
package net.mindview.atunit;
import java.lang.annotation.*;
// Both fields and methods can be tagged as properties:
2015-04-20 15:36:01 -07:00
@Target({ElementType.FIELD, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface TestProperty {} ///:~