11 lines
225 B
Java
Raw Normal View History

2015-04-20 15:36:01 -07:00
//: annotations/Testable.java
package annotations;
import net.mindview.atunit.*;
public class Testable {
public void execute() {
System.out.println("Executing..");
}
@Test void testExecute() { execute(); }
} ///:~