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

11 lines
357 B
Java
Raw Normal View History

2015-04-20 15:36:01 -07:00
//: net/mindview/atunit/TestProperty.java
2015-05-29 14:18:51 -07:00
// <20>2015 MindView LLC: see Copyright.txt
2015-04-20 15:36:01 -07:00
// 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)
2015-05-05 11:20:13 -07:00
public @interface TestProperty {} ///:~