12 lines
266 B
Java
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(); }
|
|
} ///:~
|