12 lines
262 B
Java
12 lines
262 B
Java
// annotations/Testable.java
|
|
// ©2016 MindView LLC: see Copyright.txt
|
|
package annotations;
|
|
import com.mindviewinc.atunit.*;
|
|
|
|
public class Testable {
|
|
public void execute() {
|
|
System.out.println("Executing..");
|
|
}
|
|
@Test void testExecute() { execute(); }
|
|
}
|