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.*;
|
|
|
|
|
|
2015-04-29 13:56:17 -07:00
|
|
|
|
// 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 {} ///:~
|