10 lines
295 B
Java
10 lines
295 B
Java
//: net/mindview/atunit/TestObjectCleanup.java
|
|
// ©2015 MindView LLC: see Copyright.txt
|
|
// The @Unit @TestObjectCleanup tag.
|
|
package net.mindview.atunit;
|
|
import java.lang.annotation.*;
|
|
|
|
@Target(ElementType.METHOD)
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface TestObjectCleanup {} ///:~
|