2015-05-29 14:18:51 -07:00

12 lines
266 B
Java

//: annotations/Testable.java
// ©2015 MindView LLC: see Copyright.txt
package annotations;
import net.mindview.atunit.*;
public class Testable {
public void execute() {
System.out.println("Executing..");
}
@Test void testExecute() { execute(); }
} ///:~