KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > pth > Test


1 /*
2  * Author : Stephen Chong
3  * Created: Nov 21, 2003
4  */

5 package polyglot.pth;
6
7 /**
8  *
9  */

10 public interface Test {
11     String JavaDoc getName();
12     String JavaDoc getDescription();
13     boolean success();
14     String JavaDoc getFailureMessage();
15     boolean run();
16     void setOutputController(OutputController output);
17     
18     TestResult getTestResult();
19     void setTestResult(TestResult tr);
20 }
21
Popular Tags